Hotfix / Patch build & delivery approach

左心房为你撑大大i 提交于 2019-12-05 09:45:18

I would like to hear about how you manage your build pipeline - packaging and version control

I introduced a (working) concept:

A Bugreport as an identification like bug711 all sources touched to fix this bug will be tagged (Version Control) with the bug report no.

This tag can be used to checkout all sources required to create a patch (In cases static files like html,js,css etc. are involved) and to merge from branches into head revision.

In the case of java code the minimum to deploy would be an artifact (jar,ear,war-file). Which requires a restart of the application. In case of JBoss Application Server we discovered that the 'exploded' deploy allows us to patch without downtimes.

It really depends on the server environment and the kind of applications which approach would work best for you. I'm afraid that there is no single best-practice.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!