摘要: 1、MySQL中将一个表从一个数据库复制到另外一个数据库 create table stock_A.t_a select * from stock_B.t_b 2、表联合:复制另一张表中的某一列到当前表中的某一列 update t_a inner join t_b on t_a.column1=t_ 阅读全文
posted @ 2022-03-06 21:09 xiao1xuesheng 阅读(85) 评论(0) 推荐(0) 编辑
摘要: Spring Cache常用的注解:@Chacheable, @CacheEvict, @CachePut 使用@Cacheable标记的方法在执行后Spring Cache将缓存其返回结果 使用@CacheEvict标记的方法会在方法执行前或者执行后移除Spring Cache中的某些元素。 常用 阅读全文
posted @ 2022-03-06 16:05 xiao1xuesheng 阅读(64) 评论(0) 推荐(0) 编辑