如何更改部署在远程 Jboss 中的 .war 文件内的 CSS 文件
所以我有一个远程服务器,我通过 FTP 将 .war 文件上传到部署文件夹。因此,有时我只需要更改 css 文件中的一两行。现在我必须重新部署整个战争(整整一个小时只是为了上传文件)。所以我想知道如果我只需要修改一个文件我该怎么办?
远程服务器是 Centos 5.5 和 Jboss 5.1。我可以通过 SSH 访问远程服务器,但我没有太多权限。
这里有一些随机代码,不用担心:)
function basedir(){
var basedir = document.location.href;
basedir = basedir.substring(0, basedir.lastIndexOf('/')) + '/';
return basedir;
}
So I have a remote server where i upload via FTP an .war file to the deploy folder. So there are times when i just need to change one line or two from an css file. Unitl now i have to redeply the whole war (a whole hour just to upload the file). So i was wondering what could i do if I need to modify just one file?
The remote server is a Centos 5.5 with Jboss 5.1. I can access the remote server via SSH but i dont have too many permission.
Here some random code, dont worry about this :)
function basedir(){
var basedir = document.location.href;
basedir = basedir.substring(0, basedir.lastIndexOf('/')) + '/';
return basedir;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一些软件部署工具可以帮助您实现这一目标。例如,KwateeSDCM 实际上只会上传当前安装的 war 和更新的 war 之间修改的文件(基于 MD5 哈希)一。
There are software deployment tools that can help you achieving just that. For instance, KwateeSDCM will actually only upload modified files (based on an MD5 hash) between the currently installed war and your updated one.