//上述条件缺一不可@TestpublicvoidtestTwoCache()throwsIOException{SqlSessionFactoryBuilder sqlSessionFactoryBuilder =newSqlSessionFactoryBuilder();InputStream is =Resources.getResourceAsStream("mybatis-config.xml");SqlSessionFactory sqlSessionFactory = sqlSessionFactoryBuilder.build(is);SqlSession sqlSession1 = sqlSessionFactory.openSession(true);CacheMapper mapper1 = sqlSession1.getMapper(CacheMapper.class);System.out.println(mapper1.getEmpById(4));sqlSession1.close();SqlSession sqlSession2 = sqlSessionFactory.openSession(true);CacheMapper mapper2 = sqlSession2.getMapper(CacheMapper.class);System.out.println(mapper2.getEmpById(4));sqlSession2.close();}//执行结果DEBUG06-1415:23:18,059CacheHitRatio[com.lotus.mybatis.mapper.CacheMapper]:0.0(LoggingCache.java:60)DEBUG06-1415:23:18,968==>Preparing: select * from t_emp where eid=?(BaseJdbcLogger.java:137)DEBUG06-1415:23:18,984==>Parameters:4(Integer)(BaseJdbcLogger.java:137)DEBUG06-1415:23:19,015<==Total:1(BaseJdbcLogger.java:137)Emp{eid=4, empName='tye', age=14, sex='男', email='tye@qq.com', dept=null}WARN06-1415:23:19,015As you are using functionality that deserializes object streams, it is recommended todefine the JEP-290 serial filter. Please refer tohttps://docs.oracle.com/pls/topic/lookup?ctx=javase15&id=GUID-8296D8E8-2B93-4B9A-856E-0A65AF9B8C66(SerialFilterChecker.java:46)DEBUG06-1415:23:19,015CacheHitRatio[com.lotus.mybatis.mapper.CacheMapper]:0.5(LoggingCache.java:60)Emp{eid=4, empName='tye', age=14, sex='男', email='tye@qq.com', dept=null}
1. 问题引出
当实体类的状态属性为Integer类型时,容易写错 2. 初步修改
把状态属性强制为某个类型,并且自定义一些可供选择的常量。 public class LessonStatus {public static final LessonStatus NOT_LEARNED new LessonStatus(0,"未学习"…
1Pong Game Tutorial — Kivy 2.3.0 documentation
Introduction
Welcome to the Pong tutorial 欢迎来到 乒乓球 导师辅导课
This tutorial will teach you how to write pong using Kivy. We’ll start with a basic application like the one described in the Create …