创建SpringBoot项目
Posted 虚极静笃
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建SpringBoot项目相关的知识,希望对你有一定的参考价值。
引入依赖:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.0.RELEASE</version> </parent> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> </dependencies>
访问:
注意:
@RestController
加上@RestController 表示修饰该Controller所有的方法返回JSON格式,直接可以编写Restful接口
@EnableAutoConfiguration
注解:作用在于让 Spring Boot 根据应用所声明的依赖来对 Spring 框架进行自动配置
这个注解告诉Spring Boot根据添加的jar依赖猜测你想如何配置Spring。由于spring-boot-starter-web添加了Tomcat和Spring MVC,所以auto-configuration将假定你正在开发一个web应用并相应地对Spring进行设置。
SpringApplication.run(HelloController.class, args);
标识为启动类
SpringBoot启动方式2
@ComponentScan(basePackages = "com.ouyan.controller")---控制器扫包范围
@ComponentScan(basePackages = "com.ouyan.controller") @EnableAutoConfiguration public class App { public static void main(String[] args) { SpringApplication.run(App.class, args); } }
SpringBoot启动方式3
@SpringBootApplication
@SpringBootApplication 被 @Configuration、@EnableAutoConfiguration、@ComponentScan 注解所修饰,换言之 Springboot 提供了统一的注解来替代以上三个注解
扫包范围:在启动类上加上@SpringBootApplication注解,当前包下或者子包(如com.ouyan.controller就是com.ouyan的子包)下所有的类都可以扫到。
以上是关于创建SpringBoot项目的主要内容,如果未能解决你的问题,请参考以下文章
创建Spring boot入门项目 在项目中,如何用浏览器所写代码
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段