Maven
Pansanday
Talk is cheap, go through my blog.
展开
-
Springboot项目启动报错 Failed to bind properties under 'spring.datasource.type' to java.lang.Class
问题描述:Springboot项目在启动时,报出了以下错误:***************************APPLICATION FAILED TO START***************************Description:Failed to bind properties under 'spring.datasource.type' to java.l...原创 2020-04-07 16:45:25 · 9182 阅读 · 0 评论 -
maven 打包时排除部分目录
问题描述:在项目进行maven打包时,有时想排除resource目录下的部分目录,如:用户存放sql的目录,用于存放项目wiki的目录等。解决方案:<build> <resources> <resource> <directory>src/main/resources</directory>...原创 2020-04-05 09:15:01 · 7843 阅读 · 0 评论 -
maven常用dependency
pom.xml常用依赖: UTF-8 1.4.1 4.0.5.RELEASE <!-- Core utilities used by other modules. Define this if you use Spring Utility APIs (org.springframework.core.*/org.springframework.util.*) -->原创 2014-08-06 23:57:17 · 842 阅读 · 0 评论 -
加速maven jar包, pom下载速度 - aliyun Maven仓库
生活在瓷器国, 用默认的maven仓库地址下载jar包真是下的心都碎了, B/s的速度...还好国人给力, 有阿里云maven仓库这种东西, 从此走上了快速路方法:修改maven的conf目录下的settings.xml文件, 加上mirror节点<mirror> <id>alimaven</id> <nam...原创 2016-11-13 13:32:27 · 1456 阅读 · 0 评论 -
解决eclipse中tomcat无法识别maven web项目问题
eclipse工具中导入了maven web项目, 但是tomcat死活都识别不了, maven项目进行了clean install等操作, 但是仍无效, 后在网上搜索到以下答案, 解决问题1. 右击项目 -> Debug As -> Maven build...2. 在Goals中填入: -Dwtpversion=2.0 eclipse:eclipse对于WT原创 2017-03-30 16:07:43 · 10568 阅读 · 0 评论 -
使用maven插件生成项目的java doc
操作步骤:1. 在pom.xml文件中添加javadoc配置 doclint-java8-disable [1.8,) org.apache.maven.plugins maven-javadoc-plugin -Xdoclint:none 2. 在mvn原创 2018-02-06 14:07:56 · 802 阅读 · 0 评论 -
maven依赖策略
一. Maven依赖仲裁(Dependency Mediation):第一原则:最短路径优先原则第二原则:第一声明优先原则,在依赖路径长度相等的前提下,在POM中依赖声明最靠前的依赖优先例如,项目A有这样的依赖关系: 1. A -> B -> C -> X(1.0),A -> D -> X(2.0),X(1.0)路径长度为3,X(2.0)路径长度为2,根据第一原则,X...转载 2018-03-14 15:09:44 · 883 阅读 · 0 评论 -
微信支付失败: lengthTag=111, too big
问题描述:微信支付需要使用到证书,名字类似于 apiclient_cert.p12,放置在maven项目的src/main/resources/目录下。打包部署后,进行支付时,报出了 DerInputStream.getLength(): lengthTag=111, too big 错误!问题原因(来自网络):如果把证书单独放到某个文件目录下是木有问题的,猜测是否是路径太长导致的呢?在本地测试排...原创 2018-05-04 10:30:25 · 2110 阅读 · 2 评论 -
使用IDEA无法下载jar包source
问题:使用Idea时,想查看依赖包的源码,但出现无法下载的提示:idea Sources for ‘spring-context-4.3.2.RELEASE.jar’ not found解决方法:方法1:使用Maven命令。经过测试,好用。下载了所有POM里的依赖包的source,这点不是想要的,原来只想下载想看的依赖的source。参考:IDEA-165800 Can’t do...转载 2019-03-27 13:40:58 · 3508 阅读 · 0 评论