Springboot学习记录

学习Springboot day1

## Spring boot 入门hello world 案例:
	首先,配置 pom.xml 文件 。导入初始依赖:
<parent>
    	<groupId>org.springframework.boot</groupId>
    	<artifactId>spring-boot-starter-parent</artifactId>
    	<version>1.5.2.RELEASE</version>
 	</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
 </dependencies>
	其次,在java文件夹下创建SpringBootApplication.class作为程序的入口,场景启动器(starter):
/**
	*@SpringBootApplication 标注一个主程序类,说明这一个Spring boot 应用
    */
	@SpringBootApplication  
	public class SpringbootApplication {
    	public static void main(String[] args) {
          SpringApplication.run(SpringbootApplication.class,args);
   	  }
	}
	然后在创建controller.class文件,即表现层的文件:
@Controller
	public class controller {
    	@RequestMapping("/hello")
    	@ResponseBody
    	public String test(){
        	return "hello world";
    }
}

启动主程序文件即可。

你可能感兴趣的:(spring,boot,java,后端)