赞
踩
默认包扫描规则:
@SpringBootApplication 标注的就是主程序
SpringBoot 只会扫描主程序下面的包 自动的 component-scan 功能
在 @SpringBootApplication 添加参数可以增加包扫描范围 如:@SpringBootApplication(scanBasePackages = “com.zhong”)
在 @SpringBootApplication 直接使用注解 @ComponentScan(“com.zhong”) 指定扫描路径
开始可以正常访问
package com.zhong.boot302demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication(scanBasePackages = "com.zhong") // 添加包扫描位置 // @ComponentScan("com.zhong") // 直接指定扫描路径 public class Boot302DemoApplication { public static void main(String[] args) { SpringApplication.run(Boot302DemoApplication.class, args); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。