注释:
@RestController 控制层
@Value("${student.details}") 注入属性
@Autowired 注入对象(对象内包含有各个属性)
@ConfigurationProperties(prefix = "student") 配置对象类
@Component 组件,配置对象类需添加这个注释
多环境配置
(模板)
spring:
profiles:
#active: dev
active: prod
@RestController 控制层
@Value("${student.details}") 注入属性
@Autowired 注入对象(对象内包含有各个属性)
@ConfigurationProperties(prefix = "student") 配置对象类
@Component 组件,配置对象类需添加这个注释
多环境配置
(模板)
spring:
profiles:
#active: dev
active: prod
2018-01-26
最新回答 / 慕沐2409663
首先在你的pom文件下 看你的打包是war 还是war ,然后去你相应的程序目录下 胡里有一个target 文件,进去找到对应的jar包,前提是你用Maven 打包成功 即maven install
2018-01-25