标签: java spring spring-mvc spring-boot velocity
有没有办法从速度模板获取活动的配置文件名称而不必通过Spring Boot应用程序上的mvc控制器的ModelView对象传递参数?
我使用-Dspring.profiles.active=profilename JVM参数来激活我的个人资料。
-Dspring.profiles.active=profilename
使用Thymeleaf我可以使用内置的@environment.acceptsProfiles('production')方法访问活动的配置文件名称。有没有内置的方法在速度模板中做同样的事情?
@environment.acceptsProfiles('production')