service中入库的方法,需要在多线程的情况下做测试,然后就开启两个线程循环执行service方法,但是出现了很多问题,有以下几种情况。
- 两个线程都执行到一半然后就报错终止,数据库分别有几条数据
- 两个线程都只执行一遍,数据库分别有一条数据
- 数据库没有数据
相关代码
@Rollback(value = false)
@Test
public void test() throws Exception {
// 不开启线程,在主线程中执行没有问题
// for (int i = 0; i < 10; i++) {
// normal(Thread.currentThread().getId(), i);
// }
Thread thread1 = new Thread(new Runnable() {
@Override
public void run() {
for (int i = 0; i < 10; i++) {
normal(Thread.currentThread().getId(), i);
}
}
});
Thread thread2 = new Thread(new Runnable() {
@Override
public void run() {
for (int i = 0; i < 10; i++) {
normal(Thread.currentThread().getId(), i);
}
}
});
thread1.start();
thread2.start();
}
public void normal(long id, int n) {
auditLoggingService.insertAuditLogging("修改个人密码成功" + id + "/" + n, 56, 6, 0,
BaseConstants.AuditLoggingOperatorType.MODIFY, "修改个人密码", "修改密码", 0, "", "", "无", "", BaseConstants.UserInfo.USER_CAT_INNER, "yangyan", "");
}
错误信息
- 有时候可以成功执行,没有报错信息,但是数据库没有信息
- Returning cached instance of singleton bean 'org.springframework.transaction.interceptor.TransactionInter
在测试类中使用多线程,测试程序运行完,线程就会随之关闭.所以会出现这样的问题.
解决办法是保持测试程序的持续运行,比如sleep一段时间,让线程先运行完毕,或者在程序最后加上 System.in.read() 一直读等待.