04 2021 档案

摘要:自动化部署MyBatis MBG Generator时报错 Cannot instantiate object of type org.mybatis.generator.plugins.UnmergeableXmlMappersPlugin 问题原因是出自mybatis-generator-cor 阅读全文
posted @ 2021-04-09 04:00 Carln 阅读(1584) 评论(0) 推荐(0)
摘要:今天刷力扣遇到了这样的问题: 一个整型数组 nums 里除两个数字之外,其他数字都出现了两次。请写程序找出这两个只出现一次的数字。要求时间复杂度是O(n),空间复杂度是O(1)。 之前没有遇到过类似的题型,看到之后很懵,看了题解才知道要用到分组异或的方式进行分组。题解又看了十分钟才终于理解解法的含义 阅读全文
posted @ 2021-04-03 07:49 Carln 阅读(237) 评论(0) 推荐(0)
摘要:在把数据库配置文件写到jdbc.properties文件中后试图在applicationContext.xml中用${property}的方式来读取属性值,但是始终报错spring无法识别jdbc.properties文件,报错信息如下 org.springframework.beans.facto 阅读全文
posted @ 2021-04-02 16:47 Carln 阅读(2066) 评论(0) 推荐(0)