赞
踩
慢慢的发现知识需要总结,分享,并得到反馈,才能提高自己的技术水平,以后开始尽量每天写博客
1.maven如何来把lib包打出来
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<!-- <executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>-->
</plugin>
<表达式>
<id---其实就是内置的>
<阶段>
<配置>
2.this.getClass获得当前的路径
但是eclipse和Idea工具对路径略有区别,导致Idea取不到类路径下的bean.xml
3.p名称空间不能自动提示的问题
学习了怎么找到xsd文件
3.compent 细分repository service controller
resource(name:可选的)先根据名称,再根据类型 处理依赖,都不用set方法了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。