解释一下配置文件,第一个<properties>里面定义的是一个一个的变量,原因是在下面的一个一个<dependency>中定义版本的时候如果一个一个写他的version,那么我一旦改了版本,就要再一个一个改很麻烦,于是定义一个全局变量<properties>,下面定义版本的时候直接用${spring.version}引用就行了
2015-08-07
在这里解释:<properties>
<commons-lang.version>2.6</commons-lang.version>
<jackson.version>2.5.4</jackson.version>
...等等
</properties>
的意思,这就是
<commons-lang.version>2.6</commons-lang.version>
<jackson.version>2.5.4</jackson.version>
...等等
</properties>
的意思,这就是
2015-08-07
Project build error: Non-resolvable import POM: Failure to find org.springframvework:spring-framework-bom:pom:4.1.3.RELEASE in http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced
2015-08-05