Spring boot 搭建
Posted 柔静处下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot 搭建相关的知识,希望对你有一定的参考价值。
1、pom文件引入:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.4.RELEASE</version> </parent>
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
2、创建spring boot 启动类
@SpringBootApplication // Spring Boot核心注解,用于开启自动配置
public class DemoApplication extends SpringBootServletInitializer{
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
3、添加测试controller
@RestController public class TestController { @RequestMapping("/query") public String query() { return "hello Spring boot!"; } }
4、注意事项
controller必须和DemoApplication 在同一个包下或者与DemoApplication 同级的子包下。
暂时写这么多,后续有添加的再补充。
以上是关于Spring boot 搭建的主要内容,如果未能解决你的问题,请参考以下文章
解决spring-boot启动中碰到的问题:Cannot determine embedded database driver class for database type NONE(转)(代码片段
spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段