标签:spring mvc pat targe compile group 情况 文件的 restful
若想在 Maven 中使用 Tomcat 服务器,需要在 pom.xml 文件中的 <build></build> 标签中添加以下代码
<!-- Maven项目编译插件 --> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <!-- 不指定时默认采用最新插件版本 --> <configuration> <!-- 根据实际情况设置 JDK --> <source>1.7</source> <!-- 源代码使用的开发版本 --> <target>1.7</target> <!-- 需要生成的目标class文件的编译版本 --> <encoding>UTF-8</encoding> </configuration> </plugin> <!-- Tomcat 插件配置 --> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <!-- 使用内置的模拟Tomcat服务器 --> <path>/SpringMVC_170422_RESTful_CRUD</path> <uriEncoding>UTF-8</uriEncoding> <port>9527</port> <mode>context</mode> <contextReloadable>true</contextReloadable> </configuration> </plugin> </plugins>
标签:spring mvc pat targe compile group 情况 文件的 restful
原文地址:http://www.cnblogs.com/yjq520/p/6762170.html