摘要: 1,idea选择创建一个maven项目 2,pom.xml <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> 阅读全文
posted @ 2020-02-01 22:41 王东波 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 1,下载安装包,解压,执行以下命令启动服务。 nexus.exe /run 2,访问http://localhost:8081访问管理界面,添加一个maver2(proxy)的仓库,代理地址填写阿里云的加速地址:http://maven.aliyun.com/nexus/content/groups 阅读全文
posted @ 2020-02-01 22:25 王东波 阅读(226) 评论(0) 推荐(0) 编辑
摘要: package命令完成了项目编译、单元测试、打包功能,但没有把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库和远程maven私服仓库 install命令完成了项目编译、单元测试、打包功能,同时把打好的可执行jar包(war包或其它形式的包)布署到本地maven仓库,但没有布署 阅读全文
posted @ 2020-02-01 21:21 王东波 阅读(132) 评论(0) 推荐(0) 编辑