MappedFile#appendMessagesInner ...
分类:
其他好文 时间:
2020-01-18 14:51:14
阅读次数:
49
在使用spring boot 1.X的时候我们可以在console中看到mapping的映射路径 1 2020-01-12 19:10:19.996 INFO 2711 [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/err ...
分类:
移动开发 时间:
2020-01-12 20:10:48
阅读次数:
194
1、plugins MyBatis官网对于plugins的描述是这样的: MyBatis allows you to intercept calls to at certain points within the execution of a mapped statement. By default ...
分类:
数据库 时间:
2020-01-08 12:22:14
阅读次数:
89
def _mapped_func(self, func): """ Apply function ``func`` on all records in ``self``, and return the result as a list or a recordset (if ``func`` retu ...
分类:
移动开发 时间:
2020-01-06 12:47:29
阅读次数:
126
Caused by: org.hibernate.MappingException: Repeated column in mapping for entity: com.boot.entity.RepEntity column: rep_batch (should be mapped with i ...
分类:
移动开发 时间:
2020-01-02 20:53:09
阅读次数:
127
问题1:我们查询客户时,要不要把联系人查询出来? 分析:如果我们不查的话,在用的时候还要自己写代码,调用方法去查询。如果我们查出来的,不使用时又会白白的浪费了服务器内存。 解决:采用延迟加载的思想。通过配置的方式来设定当我们在需要使用时,发起真正的查询。 问题2:我们查询联系人时,要不要把客户查询出 ...
分类:
其他好文 时间:
2020-01-01 10:07:06
阅读次数:
76
因为Spring-Security从4+升级到5+,导致There is no PasswordEncoder mapped for the id “null”错误。 解决方案: 1.可在密码验证类中添加 @Bean public static NoOpPasswordEncoder passwor ...
分类:
移动开发 时间:
2019-12-22 20:01:53
阅读次数:
275
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): cn.com.bmsoft.mapper.BmSysCrmCustomerMapper.selectByExample at org.ap ...
分类:
Web程序 时间:
2019-12-18 17:40:38
阅读次数:
93
mybatis是项目中常用到的持久层框架,今天我们学习下mybatis,随便找一个例子可以看到通过读取配置文件建立SqlSessionFactory,然后在build拿到关键的sqlsession,这是我从网上随便找了下例子,关键的方法在于newSqlSessionFactoryBuilder().build(reader);可以看到parser.parse()返回的结果是Configuratio
分类:
其他好文 时间:
2019-12-18 11:21:29
阅读次数:
94
1 查询CPU信息: 说明 # 总核数 = 物理CPU个数 X 每颗物理CPU的核数 # 总逻辑CPU数 = 物理CPU个数 X 每颗物理CPU的核数 X 超线程数 # 如果CPU核数和逻辑数相同,说明该CPU没有超线程,反之则有,如本例中的CPU就是双线程的 查看CPU型号 cat /proc/c ...
分类:
系统相关 时间:
2019-12-06 09:25:39
阅读次数:
121