java spring Boot初级使用的方法
一、创建一个meven project工程mevenBoot。
二、在工程的根目录下的pom.xml文件中,加一下代码
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.2.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
三、创建测试类AppTest,在类AppTest中添加以下代码:
/**
* Unit test for simple App.
*/
@Controller
@EnableAutoConfiguration
public class AppTest
{
@RequestMapping("/main")
@ResponseBody
String home(){
return "this is me";
}
public static void main(String[] args){
SpringApplication.run(AppTest.class, args);
}
}
四、运行你的AppTest类,在浏览器中输入:http://localhost:8080/main ,就可以有结果“this is me”显示了(因为Spring boot内嵌tomcat了):