1 Star 4 Fork 0

Ep流苏/springboot-component

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 5.48 KB
一键复制 编辑 原始数据 按行查看 历史
Ep流苏 提交于 2022-03-19 17:46 . feat: springboot 接口传参测试
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.8</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>io.zsy</groupId>
<artifactId>springboot-component</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>springboot-email</module>
<module>springboot-poi</module>
<module>springboot-springbatch</module>
<module>springboot-aop</module>
<module>springboot-jpa</module>
<module>springboot-exception</module>
<module>springboot-shiro</module>
<module>springboot-common</module>
<module>springboot-http</module>
<module>springboot-mybatis</module>
<module>springboot-cache</module>
<module>springboot-redis</module>
<module>springboot-h2</module>
<module>springboot-mybatis-plus</module>
<module>springboot-websocket</module>
<module>springboot-mongodb</module>
<module>springboot-oss</module>
<module>springboot-param</module>
<module>springboot-dynamic-datasource</module>
<module>springboot-logger</module>
</modules>
<!-- 统一管理jar包版本 -->
<properties>
<druid.version>1.1.20</druid.version>
<mybatis.version>2.1.4</mybatis.version>
<mybatis.plus.version>3.4.3</mybatis.plus.version>
<poi.version>4.1.1</poi.version>
<gson.version>2.8.5</gson.version>
<fastjson.version>1.2.75</fastjson.version>
<jasypt.version>2.1.1</jasypt.version>
<log4j.version>1.2.17</log4j.version>
<swagger.version>2.0.7</swagger.version>
</properties>
<!-- 子模块继承之后,提供作用:锁定版本 + 子模块不用再写 version -->
<dependencyManagement>
<dependencies>
<!-- database relative -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>${druid.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>${mybatis.plus.version}</version>
</dependency>
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-generator</artifactId>
<version>3.4.1</version>
</dependency>
<!-- poi -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
</dependency>
<!-- devtools -->
<!-- 用于日志切面中,以 json 格式打印出入参 -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>com.github.ulisesbocchio</groupId>
<artifactId>jasypt-spring-boot-starter</artifactId>
<version>${jasypt.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter -->
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-boot-starter</artifactId>
<version>${swagger.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<!-- 公共依赖,使每个模块只需要关注特定业务所需要的依赖 -->
<dependencies>
<!-- web 支持 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!-- test scope 不能传递继承 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zsy0216/springboot-component.git
git@gitee.com:zsy0216/springboot-component.git
zsy0216
springboot-component
springboot-component
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385