提交 | 用户 | age
|
8af9b5
|
1 |
package com.hx.bean.annotations; |
C |
2 |
|
|
3 |
import com.hx.mybatis.aes.springbean.ConstantBean; |
|
4 |
import com.hx.mybatis.aes.springbean.InitMysqlData; |
|
5 |
import com.hx.mybatis.aes.springbean.MySqlInterceptor; |
|
6 |
import com.hx.mybatis.aes.springbean.VariableAesKey; |
|
7 |
import com.hx.redis.RedisConfig; |
|
8 |
import com.hx.redis.RedisUtil; |
|
9 |
import org.springframework.context.annotation.Import; |
|
10 |
|
|
11 |
import java.lang.annotation.*; |
|
12 |
|
|
13 |
/**使用redis链接 |
|
14 |
*这里的Import的两个类就是需要加载的bean,这样就可以通过简单的添加一个注解来加载自己自定义的bean了,而且可 |
|
15 |
*以是很多个,可以打到jar包里面通过Maven引入都是ok的; |
|
16 |
* @author CJH |
|
17 |
* @date 202-06-17 |
|
18 |
*/ |
|
19 |
@Target(ElementType.TYPE) |
|
20 |
@Retention(RetentionPolicy.RUNTIME) |
|
21 |
@Documented |
|
22 |
@Import({RedisConfig.class, RedisUtil.class}) |
|
23 |
public @interface RedisClient { |
|
24 |
|
|
25 |
|
|
26 |
} |