@PropertySource & @Value 配合使用配置文件 步骤: 需要使用@Value注解注入参数的类要加上@Component注解需要使用@Value注解注入参数的类要加上@PropertySource: @PropertySource("classpath:config.properties") /* 1. properties文件在resources下可以只写相对路径 2. 在外部需要写全路径 */ 注入值时使用@Value @Value("${xxxx}") 注意: 取不到值的可能原因: 使用了new创建对象,需要用@Autowired装配对象不能使用static修饰