http://www.cnblogs.com/viewcozy/p/4789877.html
接上一篇 ,内部moudule生成jar的方式 上一篇已经实现了,想把jar作为公共的部分让任何项目都可以引用,结果就遇到了好多问题,
感慨一下,搞技术没有捷径,需要不断的遇到坑或者阅读大量的资料和动手实践才会理解深刻, 复习重复操作n遍对于掌握技术起关键作用,搞清楚并不代表以后能记住,copy重复就是生产力
快速干,不吃饭也要干、提高效率 才能有所收获
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>oxgren</artifactId> <groupId>oxgren</groupId> <version>1.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>oxgren-common</artifactId> <dependencies> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> </dependencies> </project>
如果是带有parent 就会产生这种效果,官网的最佳实践是不会让你遇到这种坑的 遇到了会了解更多的知识
修改成这样
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <groupId>oxgren</groupId> <version>1.0-SNAPSHOT</version> <artifactId>oxgren-common</artifactId> <modelVersion>4.0.0</modelVersion> <dependencies> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> </dependencies> </project>
再去引用
<dependency> <groupId>oxgren</groupId> <artifactId>oxgren-common</artifactId> <version>1.0-SNAPSHOT</version> </dependency> </dependencies>
问题解决了
曾怀疑过命名空间冲突
从 Encoding.Base64Hander => oxgren.common.Encoding.Base64Hander 后也没用。
时间: 2024-10-10 16:36:55