New file |
| | |
| | | package com.hx.bean.annotations; |
| | | |
| | | import com.hx.mybatis.aes.springbean.ConstantBean; |
| | | import com.hx.mybatis.aes.springbean.InitMysqlData; |
| | | import com.hx.mybatis.aes.springbean.MySqlInterceptor; |
| | | import com.hx.mybatis.aes.springbean.VariableAesKey; |
| | | import com.hx.redis.RedisConfig; |
| | | import com.hx.redis.RedisUtil; |
| | | import org.springframework.context.annotation.Import; |
| | | |
| | | import java.lang.annotation.*; |
| | | |
| | | /**使用redis链接 |
| | | *这里的Import的两个类就是需要加载的bean,这样就可以通过简单的添加一个注解来加载自己自定义的bean了,而且可 |
| | | *以是很多个,可以打到jar包里面通过Maven引入都是ok的; |
| | | * @author CJH |
| | | * @date 202-06-17 |
| | | */ |
| | | @Target(ElementType.TYPE) |
| | | @Retention(RetentionPolicy.RUNTIME) |
| | | @Documented |
| | | @Import({RedisConfig.class, RedisUtil.class}) |
| | | public @interface RedisClient { |
| | | |
| | | |
| | | } |