博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
项目积累demo-01
阅读量:6713 次
发布时间:2019-06-25

本文共 2524 字,大约阅读时间需要 8 分钟。

1 搭建Spring-Boot项目

  在这里我使用intellij新建spring boot工程;

    点击next;

 

 输入Group以及artifact之后。点击next.之后点击web.接着finish就ok了

测试案列,证明spring boot工程搭建完毕;
·1)依赖的pom.xml
4.0.0
com.gosaint.spring.boot.blog
initiallizr-start
0.0.1-SNAPSHOT
jar
initiallizr-start
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.5.9.RELEASE
UTF-8
UTF-8
1.8
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-web
RELEASE
org.springframework.boot
spring-boot-maven-plugin

测试demo(该类是程序自动生成的)

package com.gosaint.spring.boot.blog.initiallizrstart;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.EnableAutoConfiguration;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.ResponseBody;@Controller@EnableAutoConfiguration@SpringBootApplicationpublic class InitiallizrStartApplication {    @RequestMapping("/hello")    @ResponseBody    String home() {        return "Hello World!";    }    public static void main(String[] args) {        SpringApplication.run(InitiallizrStartApplication.class, args);    }}

启动main()方法;如下所示

访问localhost:8080/hello:

 

好了,就此一个Spring-Boot的web工程已经启动了!

 

 

 

转载于:https://www.cnblogs.com/gosaint/p/8277756.html

你可能感兴趣的文章
分布式服务Dubbo的前世今生
查看>>
Forge模型转换和网页浏览在Android上的实践
查看>>
greenDao多表关联
查看>>
接口限流的常用算法汇总
查看>>
IBM推出实时跨境支付解决方案Blockchain World Wire
查看>>
Hybrid App走向“轻混”,剖析WeX5开源高性能HTML5 App开发框架
查看>>
网易戏精ARCore短视频新玩法实践
查看>>
华泰证券:如何自研高效可靠的交易系统通信框架?
查看>>
我们究竟应不应该使用框架?
查看>>
Deis发布1.4版本,支持Microsoft Azure
查看>>
慎用!BLEU评价NLP文本输出质量存在严重问题
查看>>
如何撰写好文档?精益文档的六个实践
查看>>
随手记统一监控平台Focus设计解析
查看>>
如何在Python中使用LightFM构建可扩展的电子商务推荐系统?
查看>>
畅谈云原生(上):云原生应用应该是什么样子?
查看>>
Wiki工具使用感悟
查看>>
云因成本高昂屡被关注,上云的价值是什么?
查看>>
深入探索JVM自动资源管理
查看>>
Steve Thair谈DevOps on Windows的演变与面临的挑战
查看>>
过去一年,被我们“高估”的技术清单
查看>>