1,docker变量
在docker中定义变量,使用echo $Value 能直接在命令行中显示,
这个使用spring可以直接注入到代码当中。
php中有方便的代码直接获得环境变量,但是java用起来就麻烦点。
直接使用spring的value就行了。
2,代码
比如一个spring的用户登录action。
里面用docker配置了一个默认的admin登录名称和密码。
在spring里面可以这样写:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/user")
public class UserAction {
@Value("${default.admin.userName}")
private String userName;
@Value("${default.admin.password}")
private String password;
@RequestMapping(value = "/login", method = RequestMethod.POST)
public ResultJson channelKey(@RequestParam(value = "userName", defaultValue = "") String userName,
@RequestParam(value = "password", defaultValue = "") String password) {
.....
}
3,同时配置下spring
光是有这样的代码是不行的。
需要spring将配置注入进去。
spring配置:增加这样一行才行。
<context:property-placeholder file-encoding="UTF-8"/>
4,总结
和之前写的两个文章:
【使用junit&spring修改系统的环境变量,解决docker程序测试问题】
http://blog.csdn.net/freewebsys/article/details/52781896
【 docker下开发,修改环境变量启动jetty】
http://blog.csdn.net/freewebsys/article/details/52782032
研究java项目如何迁移到docker环境项目。
修改的代码其实并不多。docker部署方便,节省资源扩展好。是未来的趋势。
本文的原文连接是: http://blog.csdn.net/freewebsys/article/details/51089323 未经博主允许不得转载。
博主地址是:http://blog.csdn.net/freewebsys
有疑问加站长微信联系(非本文作者)