xc-spring-boot-starter-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-core</artifactId> <version>0.0.2</version> </dependency>
<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>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-parent</artifactId> <version>0.0.2</version> </parent> <artifactId>xc-spring-boot-starter-core</artifactId> <packaging>jar</packaging> <name>${project.artifactId}</name> <url>https://github.com/xiaochenxt/xc-spring-boot-starter-core</url> <description>dc核心代码</description> <developers> <developer> <id>dc2024</id> <name>小郴</name> <email>876975281@qq.com</email> </developer> </developers> <scm> <url>https://github.com/xiaochenxt/xc-spring-boot-starter-core</url> <connection>https://github.com/xiaochenxt/xc-spring-boot-starter-core.git</connection> <developerConnection>https://github.com/xiaochenxt/xc-spring-boot-starter-core.git</developerConnection> </scm> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-json</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.retry</groupId> <artifactId>spring-retry</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.github.ben-manes.caffeine</groupId> <artifactId>caffeine</artifactId> <optional>true</optional> </dependency> <!-- apache提供的对象池实现,https://commons.apache.org/proper/commons-pool/ --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> </dependency> <!-- apache提供的辅助工具类库,https://commons.apache.org/proper/commons-lang/ --> <!-- <dependency>--> <!-- <groupId>org.apache.commons</groupId>--> <!-- <artifactId>commons-lang3</artifactId>--> <!-- </dependency>--> <!-- apache集合工具类支持,https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 --> <!-- <dependency>--> <!-- <groupId>org.apache.commons</groupId>--> <!-- <artifactId>commons-collections4</artifactId>--> <!-- </dependency>--> <!-- apache提供的常见编码器和解码器的实现,https://commons.apache.org/proper/commons-codec/--> <!-- <dependency>--> <!-- <groupId>commons-codec</groupId>--> <!-- <artifactId>commons-codec</artifactId>--> <!-- </dependency>--> <!-- apache提供的HttpClient,性能好内存占用低,强烈推荐--> <dependency> <groupId>org.apache.httpcomponents.client5</groupId> <artifactId>httpclient5</artifactId> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-runtime</artifactId> <optional>true</optional> </dependency> <!--二维码--> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> </dependency> <!--图片验证码--> <dependency> <groupId>com.github.whvcse</groupId> <artifactId>easy-captcha</artifactId> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.persistence</groupId> <artifactId>jakarta.persistence-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <optional>true</optional> </dependency> </dependencies> </project>