本文共 1999 字,大约阅读时间需要 6 分钟。
Spring Boot要求Maven的版本达到3.2或以上。
实例:
POM:
4.0.0 com.jsoft.springboottest springboottest1 0.0.1-SNAPSHOT jar springboottest1 http://maven.apache.org UTF-8 org.springframework.boot spring-boot-starter-parent 1.4.7.RELEASE junit junit test org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-maven-plugin
TestController.java:
package com.jsoft.springboottest.springboottest1.controller;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class TestController { @RequestMapping("/show") public String show(){ return "Hello World"; }}
App.java:
package com.jsoft.springboottest.springboottest1;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;/** * Hello world! * */@SpringBootApplicationpublic class App { public static void main( String[] args ) { SpringApplication.run(App.class, args); }}
运行:
#第一种mvn spring-boot:run#第二种mvn package打包之后,使用java -jar xxx.jar运行#第三种直接Eclipse的Run As指定到App的入口main方法即可。
访问:
测试工程:
参考:
==>如有问题,请联系我:easonjim#163.com,或者下方发表评论。<==转载地址:http://ekfnx.baihongyu.com/