轻松学姐

文章
9
资源
0
加入时间
2年10月17天

@查看MySQL版本的方法

1.在终端下:mysql -V. [root@localhost bin]# mysql -V;mysql Ver 14.14 Distrib 5.6.21, for Linux (x86_64) using EditLine wrapper[root@localhost bin]# mysql -v;ERROR 1045 (28000): Access denied fo...

缓存设计

缓存设计上主要目标:高可用,高性能,易用性,各业务模块缓存使用的隔离性主要分为服务端设计与客户端使用服务端设计架构:负载均衡+twemproxy+redis集群是一种解决方案由代理层twemproxy进行分片客户端设计,保证易用性:标准Spring Data RedisSpring Data Redis是对Jedis的一个封装,提供@

Spring 常用命令

aop:aspectj-autoproxy/ 在配置文件中开启注解的AOP的开发(注解方式开发AOP使用,不使用扫描的时候可用)<context:property-placeholder location=“classpath:jdbc.properties”/> 引入属性文件<tx:annotation-driven transaction-manager=“transa...