简介
- 记录一些常用的网址
由于springboot打出来的jar包含了第三方引入的jar包,所以这就会导致打出来的jar包臃肿而庞大,本文针对此问题对springboot jar包进行瘦身。
三方jar包分离版:将第三方依赖的jar包导出到指定的目录下,在springboot jar包启动命令添加参数指定三方依赖jar包的路径。
maven配置自动化版:三方依赖jar包分离,资源文件分离,打出的jar包只包含当前项目的class文件,同时在jar包的MANIFEST.MF文件中指定三方依赖jar包和资源文件的路径,启动脚本无需添加路径参数,达到自动化的效果。
Dokcerfile官方文档:https://docs.docker.com/engine/reference/builder/
Docker仓库地址:https://hub.docker.com/
官方镜像github地址:https://github.com/docker-library/official-images
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
curl 是常用的命令行工具,用来请求 Web 服务器。它的名字就是客户端(client)的 URL 工具的意思。
参考文档:https://www.ruanyifeng.com/blog/2019/09/curl-reference.html