当前位置:网站首页>Make Jar, Not War
Make Jar, Not War
2022-07-06 17:36:00 【小盒子的技术分享】
大约在 4 年前,关于 java 应用最终打成 jar
包还是 war
包的选择令我比较疑惑。
那时候更多的应用是打成 war
包的,即使我们知道可以打成 jar
包,但之前都是打成 war
包,并且好像打成 jar
包并没有什么特别明显的好处。
但当时令我困惑的是越来越多的实践正在不怎么说明理由的情况下转而打 jar
包,于是我开始思考......
war 包的理由
在某大型 OTA 企业内部,应用仍然打成 war
包, PaaS 平台会自动安装并配置好 tomcat,我知道这对于 web server 的统一配置和运维来说是有好处的。 基于 war
背后的一系列 CI/CD 、DevOps 流程都一定有相应的适配,且就算 jar
包有我不知道的某些优势也不可能一夜之间在大型企业内部使用,需要平台和系统做出调整。
SpringBoot 在当时并未像现在这样流行,这并不意味着大家不用它,我的意思是相对新的项目来说,企业内部会有非常多 “老系统” 需要维护,我们不能指望一下子把这些老系统都用新的技术栈替换掉,就像你知道现在 web application
一般是前后端分离开发,但如果接手一个使用 jsp
的老家伙,你还得维护不是?
jar 的时代
时代不同了,说得好像过了几十年的样子,但其实也就几年光阴而已。不过仅仅是这几年的光阴却足以改变一些事情的面貌。
如今,云原生、微服务大行其道,大家好像已经非常适应这种开发模式,没有人纠结要不要用 SpringBoot,只会讨论使用的版本高还是低。更不用说打包的事情,很自然的会使用 jar
,虽然这种看起来的 “最佳实践”,在长期开发的过程中会形成 “肌肉记忆”,但我们还是要讨论一下为什么。
方便
可运行 Jar 是打包自包含可运行应用程序的便捷方法。这样,我们可以最大限度地减少依赖关系。可以通过 Spring boot Maven 和 Gradle plugin 来管理依赖。
云原生友好
在自备容器的情况下(docker,k8s), jar
包可以直接作为一个 single application
来管理。
在过去我们使用 war
是为了让多应用共享 web server,现在是容器的天下,在容器内,一般情况只跑一个应用进程。由于只有一个进程,我们就可以轻松地管理它,比如重启(不会影响其他的应用,因为没有其他应用)。
版本控制
利用 git
等版本控制软件,可以控制程序运行所需要的一切(比如配置文件)
易于扩展
例如,将其复制到另一台服务器,然后“ just run it!” 无需安装和/或配置容器
参考
https://medium.com/@satyajit.nalavade/make-jar-not-war-josh-long-d6ce5fbb8a23
本文由 mdnice 多平台发布
边栏推荐
- Periodic flash screen failure of Dell notebook
- SuperSocket 1.6 创建一个简易的报文长度在头部的Socket服务器
- golang中的Mutex原理解析
- Anfulai embedded weekly report no. 272: 2022.06.27--2022.07.03
- NEON优化:关于交叉存取与反向交叉存取
- Dell筆記本周期性閃屏故障
- Receive user input, height BMI, BMI detection small business entry case
- Failed to successfully launch or connect to a child MSBuild. exe process. Verify that the MSBuild. exe
- mysql: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such
- Send template message via wechat official account
猜你喜欢
2022 Google CTF SEGFAULT LABYRINTH wp
Anfulai embedded weekly report no. 272: 2022.06.27--2022.07.03
Go zero micro service practical series (IX. ultimate optimization of seckill performance)
资产安全问题或制约加密行业发展 风控+合规成为平台破局关键
UI控件Telerik UI for WinForms新主题——VS2022启发式主题
boot - prometheus-push gateway 使用
golang中的Mutex原理解析
Batch obtain the latitude coordinates of all administrative regions in China (to the county level)
ARM裸板调试之JTAG调试体验
[batch dos-cmd command - summary and summary] - string search, search, and filter commands (find, findstr), and the difference and discrimination between find and findstr
随机推荐
NEON优化:关于交叉存取与反向交叉存取
Return to blowing marshland -- travel notes of zhailidong, founder of duanzhitang
UI control telerik UI for WinForms new theme - vs2022 heuristic theme
Analysis of mutex principle in golang
JTAG debugging experience of arm bare board debugging
NEON优化:log10函数的优化案例
Deep learning framework TF installation
斗地主游戏的案例开发
Batch obtain the latitude coordinates of all administrative regions in China (to the county level)
[JS] obtain the N days before and after the current time or the n months before and after the current time (hour, minute, second, year, month, day)
C language - array
Force buckle 1037 Effective boomerang
golang中的atomic,以及CAS操作
tensorflow 1.14指定gpu运行设置
taro3.*中使用 dva 入门级别的哦
The difference between spin and sleep
THREE. AxesHelper is not a constructor
405 method not allowed appears when the third party jumps to the website
Installation of gazebo & connection with ROS
In rails, when the resource creation operation fails and render: new is called, why must the URL be changed to the index URL of the resource?