个人笔记
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
613 B

3 years ago
# maven命令
| 命令 | 作用 | 命令 | 作用 |
| ----------- | ------------------------- | ----------- | ------------------- |
| mvn clean | 清空输出目录,默认是target | mvn install | 安装jar到本地仓库中 |
| mvn compile | 编译源代码 | mvn deploy | 安装jar到远程仓库中 |
| mvn package | 打包 | | |
# webService 相关
```shell
wsimport -encoding utf-8 -keep -d .\ -p com.sprt.monitor.api.pagw.bean .\location.wsdl
wsdl2java -d .\ .\location.wsdl
```