12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.cdxw</groupId>
- <artifactId>spring_mvc_two</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>war</packaging>
- <!-- <properties>-->
- <!-- <maven.compiler.source>17</maven.compiler.source>-->
- <!-- <maven.compiler.target>17</maven.compiler.target>-->
- <!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>-->
- <!-- </properties>-->
- <dependencies>
- <!--SpringMVC-->
- <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>5.3.24</version>
- </dependency>
- <!--日志-->
- <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.4.6</version>
- <scope>test</scope>
- </dependency>
- <!-- ServletAPI -->
- <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>4.0.1</version>
- <scope>provided</scope>
- </dependency>
- <!-- Spring5和Thymeleaf整合包 -->
- <!-- https://mvnrepository.com/artifact/org.thymeleaf/thymeleaf-spring5 -->
- <dependency>
- <groupId>org.thymeleaf</groupId>
- <artifactId>thymeleaf-spring5</artifactId>
- <version>3.1.1.RELEASE</version>
- </dependency>
- </dependencies>
- </project>
|