上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页
摘要: 一、rabbitMq 角色 rabbitMq 的角色有 none, management, policymaker, monitoring, administrator none 不能访问 managerment plugin management 用户可以通过 AMQP 做的任何事外加: 列出自己 阅读全文
posted @ 2020-09-19 13:52 抽象Java 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 一、使用 @interface 实现 Annotation接口 并定义注解类 使用以下 元注解 定义注解范围 @Target 定义注解的作用目标 @Retention 注解的生命周期,定义注解的保留策略。RetentionPolicy.SOURCE:注解仅存在于源码中,在class字节码文件中不包含 阅读全文
posted @ 2020-09-19 11:00 抽象Java 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 接口 @Component @Aspect public class CacheAspect { @Autowired private RedisTemplate redisTemplate; @Pointcut("@annotation(com.jm.cache.redis.annotation. 阅读全文
posted @ 2020-09-19 10:16 抽象Java 阅读(155) 评论(0) 推荐(0) 编辑
摘要: config @Configuration // @EnableCaching @EnableAspectJAutoProxy // 开启AOP自动代理 public class AppConfig { @Value("${spring.redis.host}") String host; @Val 阅读全文
posted @ 2020-09-18 23:35 抽象Java 阅读(182) 评论(0) 推荐(0) 编辑
摘要: config @Configuration // public class AppConfig { @Value("${spring.redis.host}") String host; @Value("${spring.redis.port}") int port; // 创建对象,spring托 阅读全文
posted @ 2020-09-18 21:40 抽象Java 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1、 @Configuration // public class AppConfig { // 创建对象,spring托管 <bean ... @Bean public JedisPool jedisPool() { JedisPool jedisPool = new JedisPool("loc 阅读全文
posted @ 2020-09-18 13:44 抽象Java 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-09-16 17:42 抽象Java 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 一、Redis支持的数据类型? String字符串: 格式: set key value string类型是二进制安全的。意思是redis的string可以包含任何数据。比如jpg图片或者序列化的对象 。 string类型是Redis最基本的数据类型,一个键最大能存储512MB。 Hash(哈希) 阅读全文
posted @ 2020-09-16 15:10 抽象Java 阅读(104) 评论(0) 推荐(0) 编辑
摘要: Java 基本数据类型 : https://www.cnblogs.com/LiaHon/p/11043238.html 序列化 : https://www.cnblogs.com/Jomini/p/12460994.html String,Stringbuffer(安全), Stringbuild 阅读全文
posted @ 2020-09-16 13:56 抽象Java 阅读(346) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/andy-zhou/p/5327288.html https://www.cnblogs.com/Darrenblog/p/10712125.html 阅读全文
posted @ 2020-09-15 15:07 抽象Java 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 49 下一页