mirror of
https://gitee.com/nutz/nutzboot.git
synced 2024-11-29 18:28:01 +08:00
add: nutzboot-starter-jedisque
This commit is contained in:
parent
cefc02304a
commit
b68c1f084d
26
nutzboot-starter-jedisque/pom.xml
Normal file
26
nutzboot-starter-jedisque/pom.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<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.nutz</groupId>
|
||||
<artifactId>nutzboot-parent</artifactId>
|
||||
<version>2.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>nutzboot-starter-jedisque</artifactId>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.nutz</groupId>
|
||||
<artifactId>nutzboot-starter</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.nutz</groupId>
|
||||
<artifactId>nutz-integration-jedisque</artifactId>
|
||||
<version>1.r.63-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.github.xetorthio</groupId>
|
||||
<artifactId>jedisque</artifactId>
|
||||
<version>0.0.5-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@ -0,0 +1,14 @@
|
||||
package org.nutz.boot.starter.jedisque;
|
||||
|
||||
import org.nutz.boot.ioc.IocLoaderProvider;
|
||||
import org.nutz.integration.jedisque.JedisqueIocLoader;
|
||||
import org.nutz.ioc.IocLoader;
|
||||
import org.nutz.ioc.loader.annotation.IocBean;
|
||||
|
||||
@IocBean
|
||||
public class JedisqueStarter implements IocLoaderProvider {
|
||||
|
||||
public IocLoader getIocLoader() {
|
||||
return new JedisqueIocLoader();
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
org.nutz.boot.starter.jedisque.JedisqueStarter
|
1
pom.xml
1
pom.xml
@ -21,6 +21,7 @@
|
||||
<module>nutzboot-starter-swagger</module>
|
||||
<module>nutzboot-starter-hasor</module>
|
||||
<module>nutzboot-starter-jedis</module>
|
||||
<module>nutzboot-starter-jedisque</module>
|
||||
<module>nutzboot-starter-mongodb</module>
|
||||
<module>nutzboot-starter-ngrok</module>
|
||||
<module>nutzboot-starter-cfx</module>
|
||||
|
Loading…
Reference in New Issue
Block a user