案例代码:https://gitee.com/flymini/codes02/tree/master/maven_plugins_/com-learn-plugin02
****
appassembler-maven-plugin 插件可以为 java 项目自动生成启动脚本,并且支持多个平台(win,unix/linux、macos)。
<br/>
appassembler-maven-plugin 插件为 SpringBoot 项目生成启动脚本,步骤如下:
**1. pom中引入插件:appassembler-maven-plugin**
```xml
<build>
<plugins>
<!-- spring-boot-maven-plugin插件与appassembler-maven-plugin插件不兼容,不要将spring-boot-maven-plugin插件引进来 -->
<!--
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>2.1.0</version>
<configuration>
<platforms>
<platform>unix</platform>
<platform>windows</platform>
</platforms>
<!--打包后生成的target目录路径,如D:/workspace/com-learn-plugin02/target-->
<assembleDirectory>${project.build.directory}/${project.name}</assembleDirectory>
<!-- flat与lib共同决定将项目用的的所有jar包复制到lib目录下 -->
<repositoryLayout>flat</repositoryLayout>
<repositoryName>lib</repositoryName>
<!--启动脚本存放在bin目录-->
<binFolder>bin</binFolder>
<!--配置文件存放在conf目录路径-->
<configurationDirectory>conf</configurationDirectory>
<!--是否copy配置文件-->
<copyConfigurationDirectory>true</copyConfigurationDirectory>
<!--从哪里copy配置文件-->
<configurationSourceDirectory>src/main/resources</configurationSourceDirectory>
<includeConfigurationDirectoryInClasspath>true</includeConfigurationDirectoryInClasspath>
<binFileExtensions>
<!-- 针对不同平台生成不同类型的启动脚本 -->
<unix>.sh</unix>
<windows>.bat</windows>
</binFileExtensions>
<encoding>UTF-8</encoding>
<logsDirectory>logs</logsDirectory>
<tempDirectory>tmp</tempDirectory>
<daemons>
<daemon>
<!-- 启动脚本的名称,Linux平台上就是:app,windows平台上就是app.bat -->
<id>app</id>
<!-- 启动类 -->
<mainClass>com.learn.plugin02.Plugin02Application</mainClass>
<platforms>
<platform>jsw</platform>
</platforms>
<generatorConfigurations>
<generatorConfiguration>
<generator>jsw</generator>
<includes>
<include>linux-x86-32</include>
<include>linux-x86-64</include>
<include>windows-x86-32</include>
<include>windows-x86-64</include>
</includes>
</generatorConfiguration>
</generatorConfigurations>
<jvmSettings>
<!-- 启动时的一下jvm参数配置 -->
<extraArguments>
<extraArgument>-server</extraArgument>
<extraArgument>-Xms256M</extraArgument>
<extraArgument>-Xmx256M</extraArgument>
<extraArgument>-Xss512k</extraArgument>
<extraArgument>-Xloggc:logs/demo_gc.log</extraArgument>
<extraArgument>-verbose:gc</extraArgument>
<extraArgument>-XX:+HeapDumpOnOutOfMemoryError</extraArgument>
<extraArgument>-XX:HeapDumpPath=logs/java_heapdump.hprof</extraArgument>
</extraArguments>
</jvmSettings>
</daemon>
</daemons>
<programs>
<program>
<mainClass>com.learn.plugin02.Plugin02Application</mainClass>
<id>demoApp</id>
</program>
</programs>
</configuration>
<!-- 如果不配置 generate-daemons,则打包命令为 mvn clean package appassembler:generate-daemons -->
<!-- 如果配置了 generate-daemons,打包命令可以是 mvn clean package 也可以是 mvn clean package appassembler:generate-daemons -->
<executions>
<execution>
<inherited>true</inherited>
<phase>package</phase>
<goals>
<goal>generate-daemons</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
```
**2. 执行下面的打包命令**
```shell
mvn clean package appassembler:generate-daemons
```
**3. 打包后生成的目录**
appassembler 插件打包后生成的资源统统放在 target/generated-resources 目录下。
```
|—— target
| |—— generated-resources
| | |—— appassembler
| | | |—— jsw
| | | | |—— app
| | | | | |—— bin
| | | | | | |—— app # linux平台下的启动脚本
| | | | | | |—— app.bat # windows平台下的启动脚本
| | | | | | |—— wrapper-linux-x86-32
| | | | | | |—— wrapper-linux-x86-64
| | | | | | |—— wrapper-linux-x86-32.exe
| | | | | | |—— wrapper-linux-x86-64.exe
| | | | | |—— conf
| | | | | | |—— application.yml # 项目配置文件
| | | | | | |—— wrapper.conf # 运行环境配置文件
| | | | | |—— lib
| | | | | | |—— 大量的jar包
| | | | | |—— logs
| | | | | |—— tmp
```
**4. windows平台上启动项目**
只需要 app 目录下的资源,可以将 app 目录的复制出来。windows 平台需要以管理员身份打开cmd窗口,否则无法执行脚本。
```shell
(1)首次执行需要 app.bat install
> app.bat install
(2)启动项目
> app.bat start
(3)查询项目状态
> app.bat status
(4)停止项目
> app.bat stop
(5)重启项目
> app.bat restart
```
**5. linux平台上启动项目**
只需要 app 目录下的资源,将 app 目录打包为`.zip`、或`.tar.gz`压缩包,然后上传到 Linux 机器上。
```shell
(1)解压
$ unzip app.zip
(2)赋予脚本执行权限
$ cd app
$ chmod +x bin/app bin/wrapper-linux-x86-*
(3)启动项目
$ ./bin/app start
(4)查询项目状态
$ ./bin/app status
(5)停止项目
$ ./bin/app stop
(6)重启项目
$ ./bin/app restart
(7)查看日志
$ tail -f logs/wrapper.log
```
- Mybatis
- mybatis是什么
- mybatis优缺点
- 环境搭建
- 使用步骤
- 传参方式
- 无需传参
- 一个参数
- 多个参数
- 增/删/改
- 查询
- 单表查询
- 一对一查询
- 一对多查询
- 动态SQL
- 注解操作
- Spring
- Spring什么
- Spring优点
- Spring组成
- 第一个Spring程序
- 两大核心技术
- IoC控制反转
- IoC思想
- IoC容器使用步骤
- 属性注入
- IoC注入方式
- 模拟IoC实现
- AOP
- AOP概念
- AOP原理
- AOP关键术语
- AOP编程过程
- 切入点规则
- 5种增强方式
- Spring注解开发
- 注解开发的优势
- Bean注解开发
- AOP注解开发
- 完全注解开发
- 模拟Spring注解开发
- 自动装配
- 配置文件拆分
- SpringBean
- Bean常用属性
- Bean的作用域
- Bean的生命周期
- Spring整合MyBatis
- 整合步骤
- SqlSessionTemplate
- 业务层添加事务
- 事务的作用
- 配置文件事务
- 注解事务
- 事务参数
- SpringMVC
- SpringMVC是什么
- 环境搭建
- 请求流程
- 核心组件
- 前后端交互
- 简单交互演示
- 常用注解
- 后端数据传递至前端
- ServletAPI
- 访问静态资源
- 异常处理
- HandlerExceptionResolver
- 局部异常
- 全局异常
- 转发与重定向
- 转发演示
- 重定向演示
- 转发与重定向的区别
- 获取表单数据
- 表单标签
- REST风格的URL
- 异步处理
- 异步请求
- JSON数据处理
- 中文乱码处理
- 日期处理
- 上传文件
- 拦截器
- 视图解析器
- 视图类型
- 多视图解析器
- 自定义pdf视图
- JSR303数据验证
- JSR303是什么
- 常用约束
- 使用步骤
- SpringMVC整合Mybatis
- 整合步骤
- Mybatis分页插件
- SpringBoot
- SpringBoot是什么
- 环境搭建
- SpringBoot启动分析
- SpringBoot启动类
- 启动过程
- SpringBoot配置文件
- 配置文件类型
- 更改配置文件
- 读取配置文件
- 占位符
- 配置优先级
- 自定义IoC容器
- 定义方式
- 引入Spring配置文件
- @Configuration
- SpringBoot自动配置
- 自动配置原理
- 条件注解
- 自动配置报告
- 自定义自动配置
- 关闭自动配置
- 接管自动配置
- 多环境配置
- CommandLineRunner
- SpringBoot与Web开发
- 引入模板引擎
- Thymeleaf模板
- Freemarker模板
- 静态资源访问
- webjars
- 静态资源位置
- ico图标
- 指定首页
- 更换Web服务器
- 国际化
- 拦截器
- 错误处理机制
- 错误处理机制原理
- 定制错误页面
- 定制错误数据
- 上传文件
- 注册servlet三大组件
- 注册Servlet
- 注册过滤器
- 注册监听器
- 外部Tomcat与jsp模板
- 前后端交互
- 传递json字符串
- 传递js对象
- 传递表单
- 下载功能
- Swagger2文档
- SpringBoot整合JDBC
- 整合步骤
- 核心API
- JdbcTemplate
- 增删改
- 查询
- NamedParameterJdbcTemplate
- 增删改
- 查询
- SpringBoot整合Mybatis
- 整合步骤
- 切换为Druid数据源
- 添加事务
- Mybatis分页插件
- 场景启动器
- 场景启动器是什么
- 自定义场景启动器
- SpringBoot与日志
- 日志框架
- slf4j日志
- slf4j日志实现
- 统一切换为slf4j
- 日志配置
- 日志文件
- 切换日志框架
- 切换日志场景启动器
- SpringBoot与缓存
- JSR107缓存技术
- Spring缓存抽象
- 缓存注解
- SpEL表达式
- 使用缓存
- 自定义key生成器
- 缓存工作原理与流程
- SpringBoot整合Redis
- 整合步骤
- 初步使用
- 序列化机制
- 缓存管理器
- SpringBoot与任务
- 异步任务
- 实现异步任务
- 注意事项与原理
- 自定义线程池
- 定时任务
- cron表达式
- 创建定时任务
- @Scheduled参数
- 动态时间
- 邮件任务
- Quartz定时任务
- Quartz是什么
- 创建定时任务
- 触发器与任务
- 任务的CURD
- 两种触发器
- 并发问题
- 持久化
- 任务持久化
- Quartz集群
- misfire策略
- 打包插件
- appassembler-maven-plugin
- appassembler与assembly配合