pom配置进⾏版本号统⼀管理在l中配置
1 <properties>
2 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3 <spring.version>4.0.2.RELEASE</spring.version><!-- 声明版本号,以后统⼀在这⾥进⾏管理-->spring framework版本
4 </properties>
1 <dependencies>
2 <dependency>
3 <groupId>org.springframework</groupId>
4 <artifactId>spring-webmvc</artifactId>
5 <version>${spring.version}</version> <!--使⽤类EL表达式赋值-->
6 </dependency>
7 </dependencies>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论