| | |
| | | <relativePath/> |
| | | </parent> |
| | | <!--打包成jar、war--> |
| | | <packaging>war</packaging> |
| | | <packaging>jar</packaging> |
| | | |
| | | <groupId>com</groupId> |
| | | <artifactId>yssh</artifactId> |
| | |
| | | <artifactId>spring-boot-starter-web</artifactId> |
| | | <!--排除内置tomcat容器,让外部容器运行spring-boot项目--> |
| | | <exclusions> |
| | | <exclusion> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | </exclusion> |
| | | <exclusion> |
| | | <groupId>org.apache.logging.log4j</groupId> |
| | | <artifactId>log4j-api</artifactId> |
| | | </exclusion><!----> |
| | | <!--jar不需要屏蔽tomcat--> |
| | | <!--<exclusion> |
| | | <groupId>org.springframework.boot</groupId> |
| | | <artifactId>spring-boot-starter-tomcat</artifactId> |
| | | </exclusion>--> |
| | | <exclusion> |
| | | <groupId>org.apache.logging.log4j</groupId> |
| | | <artifactId>log4j-api</artifactId> |
| | | </exclusion> |
| | | </exclusions> |
| | | </dependency> |
| | | <!--spring事务管理--> |
| | |
| | | <artifactId>easycsv</artifactId> |
| | | <version>1.0.0</version> |
| | | </dependency> |
| | | <!--knife4j--> |
| | | <dependency> |
| | | <groupId>com.github.xiaoymin</groupId> |
| | | <artifactId>knife4j-spring-boot-starter</artifactId> |