如何更改部署在远程 Jboss 中的 .war 文件内的 CSS 文件

发布于 2024-11-08 10:49:46 字数 396 浏览 3 评论 0原文

所以我有一个远程服务器,我通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惯饮孤独 2024-11-15 10:49:46

有一些软件部署工具可以帮助您实现这一目标。例如,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文