Add:cache

This commit is contained in:
陈宁 2023-04-21 10:42:41 +08:00
parent 65b8d6487d
commit 72f984fac1
3 changed files with 36 additions and 0 deletions

24
axzo-common-cache/pom.xml Normal file
View File

@ -0,0 +1,24 @@
<?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>cn.axzo.framework</groupId>
<artifactId>axzo-framework-commons</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<name>Axzo Common Cache</name>
<artifactId>axzo-common-cache</artifactId>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.alicp.jetcache</groupId>
<artifactId>jetcache-starter-redis</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,11 @@
package cn.axzo.framework.cache;
/**
* @author cn
* @version 1.0
* @description
* @date 2023/4/20 16:15
*/
public class CommonCacheConfig {
}

View File

@ -34,6 +34,7 @@
<module>axzo-common-autoconfigure</module>
<module>axzo-common-jackson</module>
<module>axzo-common-datas</module>
<module>axzo-common-cache</module>
</modules>
<properties>