java spring Boot初级使用的方法

java spring Boot初级使用的方法

一、创建一个meven project工程mevenBoot。

二、在工程的根目录下的pom.xml文件中,加一下代码

 


    org.springframework.boot
    spring-boot-starter-parent
    2.0.2.RELEASE


    
        org.springframework.boot
        spring-boot-starter-web
    

三、创建测试类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了):

 

 

你可能感兴趣的:(spring)