feat:redis file
This commit is contained in:
parent
9f77cfc74d
commit
4fbc388845
|
@ -0,0 +1,25 @@
|
|||
<?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">
|
||||
<parent>
|
||||
<artifactId>liteflow-rule-plugin</artifactId>
|
||||
<groupId>com.yomahub</groupId>
|
||||
<version>${revision}</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>liteflow-rule-redis</artifactId>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.yomahub</groupId>
|
||||
<artifactId>liteflow-core</artifactId>
|
||||
<version>${revision}</version>
|
||||
<optional>true</optional>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
|
@ -0,0 +1,4 @@
|
|||
package com.yomahub.liteflow.parser.redis;
|
||||
|
||||
public class RedisXmlELParser {
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package com.yomahub.liteflow.parser.redis.exception;
|
||||
|
||||
public class RedisException {
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package com.yomahub.liteflow.parser.redis.util;
|
||||
|
||||
public class RedisParserHelper {
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
package com.yomahub.liteflow.parser.redis.vo;
|
||||
|
||||
public class RedisParserVO {
|
||||
}
|
|
@ -0,0 +1,15 @@
|
|||
package com.yomahub.liteflow.parser.spi.redis;
|
||||
|
||||
import com.yomahub.liteflow.parser.redis.RedisXmlELParser;
|
||||
import com.yomahub.liteflow.parser.spi.ParserClassNameSpi;
|
||||
|
||||
/**
|
||||
* Redis 解析器 SPI 实现
|
||||
*/
|
||||
public class RedisParserClassNameSpi implements ParserClassNameSpi {
|
||||
|
||||
@Override
|
||||
public String getSpiClassName() {
|
||||
return RedisXmlELParser.class.getName();
|
||||
}
|
||||
}
|
|
@ -16,6 +16,7 @@
|
|||
<module>liteflow-rule-nacos</module>
|
||||
<module>liteflow-rule-etcd</module>
|
||||
<module>liteflow-rule-apollo</module>
|
||||
<module>liteflow-rule-redis</module>
|
||||
</modules>
|
||||
|
||||
<artifactId>liteflow-rule-plugin</artifactId>
|
||||
|
|
Loading…
Reference in New Issue