- @Value是spring中的属性注解,使用@Value注解可以取出全局配置中的属性,注入到参数中
- 在application.properties中添加自定义属性
user.name=admin
user.password=123456
示例
@RestController
public class UserController {
@Value("${user.username}")
private String userName;
@Value("${user.password}")
private String password;
@RequestMapping("/user")
public String getProperties() {
System.out.println("userName:" + userName);
System.out.println("password:" + password);
return "success";
}
}