我的环境是:
Spring Boot + Mybatis + Oracle 10g + Jdk1.8
我在oracle中得到了一个名为book的表:
+---------+------+--------+
| book_id | name | number |
+---------+------+--------+
| 1 | b1 | 123 |
| 2 | b2 | 123 |
| 3 | b3 | 2343 |
+---------+------+--------+
3 rows in set (0.00 sec)
我让它工作并用我写的映射器成功显示它。但是在我用plsql在这个表中插入2条记录之后,当我查询它时,我仍然得到相同的3条记录而不是全部5条记录(如下所示)使用mybatis映射器。
+---------+------+--------+
| book_id | name | number |
+---------+------+--------+
| 1 | b1 | 123 |
| 2 | b2 | 123 |
| 3 | b3 | 2343 |
| 4 | b4 | 22343 |
| 5 | b5 | 43 |
+---------+------+--------+
5 rows in set (0.00 sec)
然后我像这样改变oracle中的缓存策略。
alter table book nocache
再次工作!使用mybatis mapper成功显示所有5条记录。但为什么?我应该每次清除oracle缓存吗?这感觉不对。有更好的解决方案吗? 任何答案都会有所帮助。 THX
application.properties
# Spring
spring.resources.static-locations=classpath:/static/
# MyBatis
mybatis.configuration.map-underscore-to-camel-case=true
mybatis.configuration.local-cache-scope=statement
# DataSource 1
spring.datasource.db1.url=jdbc:oracle:thin:@*******
spring.datasource.db1.username=***
spring.datasource.db1.password=***
spring.datasource.db1.driver-class-bookName=oracle.jdbc.OracleDriver
映射器
@Mapper
@Qualifier("bookMapper")
public interface BookMapper {
@Select({"select * from book"})
@Options(useCache = false)
@Results({
@Result(property = "bookId",column = "book_id"),
@Result(property = "bookName",column = "book_name"),
@Result(property = "bookNumber",column = "book_number")
})
List<BookEntity> getALL();
// insertBook();
}
实体
public class BookEntity {
long bookId;
String bookName;
int bookNumber;
//getters and setters
}
答案 0 :(得分:0)
问题与缓存清除无关。
我认为除commit
声明后发出insert( a DML )
之外没有问题。
如果您没有发出commit
,则只能从另一个会话中获得3条记录。
但是你发出后,
alter table book nocache
( a DDL )
,发生隐式提交,您可以看到所有5条记录。