mysql 主从数据同步

摘要: 1.在主服务器中添加对应的用户和授权 CREATE USER 'test'@'%' IDENTIFIED BY 'test'; grant all privileges on *.* to test@'%' identified by 'test' with grant option; 2.在主服务 阅读全文
posted @ 2018-07-16 16:47 罗爱熊1314 阅读(99) 评论(0) 推荐(0) 编辑

spring+quartz知识总结

摘要: 1.编写对应的quartz类对数据库中的数据进行定时处理 2.在spring 配置文件application-context.xml中添加对应的bean配置 3.在web中添加对应的监听器 4.注意事项:2.**的版本的quartz需要使用CronTriggerFactoryBean 阅读全文
posted @ 2018-05-04 10:45 罗爱熊1314 阅读(132) 评论(0) 推荐(0) 编辑