【Spring boot】运行Controller的两种方式

方式一:当只需要运行一个控制器时

通过在UserController中加上@EnableAutoConfiguration开启自动配置,然后通过SpringApplication.run(UserController.class);运行这个控制器;
【Spring boot】运行Controller的两种方式_第1张图片

方式二:可运行多个控制器

通过@Configuration+@ComponentScan开启注解扫描并自动注册相应的注解Bean
Java代码
【Spring boot】运行Controller的两种方式_第2张图片
【Spring boot】运行Controller的两种方式_第3张图片
也可以将Application.java中的

@Configuration
@ComponentScan
@EnableAutoConfiguration

换为

@SpringBootApplication

你可能感兴趣的:(Spring,boot)