- 浏览: 8570 次
- 性别:
- 来自: 广州
最新评论
文章列表
一,读写分离思路:
将不同库的读写操作对应的mapper分别放到不同目录中,例如:
ums/r/
ums/rw/
bap/r/
bap/rw/
二,采用atomikos实现分布式事务:
0,gradle依赖:
compile("org.springframework.boot:spring-boot-starter-jta-atomikos")
1,application.yml配置如下:
#数据源配置
spring:
jta:
enabled: true
service: com.atomikos.icatch.standalone ...
Just remember: this script depends on the existence of a database on the machine, so don’t forget to run dbca as the oracle user, and configure it to start at boot time (edit /etc/oratab after creating the database, and set the last column to Y).
link:http://www.pythian.com/news/968/installing-oracl ...
企业内部,多个系统间需要获取服务器时间,大部分业务需要各个应用服务器的时间保持一致。
我们可以将应用服务器、数据库服务器时间与局域网内同一台时间服务器进行同步。
这里采用linux系统的ntp-server来完成时间服务器的建立,各个应用系统都来同步此服务器时间。
1.在ubuntu安装ntp
sudo apt-get install ntp
2.修改ntp配置 /etc/ntp.conf,修改的内容就自己找准位置吧,文件很简洁
增加一个
server 127.0.0.1
增加一个(根据自己网段)
restrict 192.168.0.1 mask 255.255.0.0 nomodify ...
使用Spring2.5 + Hibernate3 进行改造项目的时候出现的问题,已经很长时间了都没有解决,希望大家帮忙,告诉问题所在.
问题是这样的:
1.我希望使用spring的MVC,不想像spring+struts那样有纵多的XML配置文件,开发起来配这配那很是繁琐.
2.以前用struts开发的,将Action改造成Controller,使用 @Controller 标注
3.Service层使用了@Service 标注, @Trasnactional标注
4.DAO层,由于使用泛型,从Controller到Service到DAO都使用泛型,DAO层被简化,只有一个基类DAO,Hiber ...