JDBC 映射数据库时成员变量命名不规范导致的bug //未完待续,待补充测试信息; ####JDBC连接数据库时,用新建的实体类去映射数据库中表信息,因为命名不规范,导致输出结果始终为空; ####期间解析过程正常,添加过程正常 映射类: public class Dep { private In ...
分类:
其他好文 时间:
2021-07-02 15:33:35
阅读次数:
0
一、单例模式定义 单例模式是指确保一个类在任何情况下都绝对只能有一个实例,并提供一个全局访问点。减少内存开销,避免对资源的多重占用。 二、饿汉式单例 1.代码示例 1 //标准写法 2 public class HungrySingleton { 3 4 private HungrySingleto ...
分类:
其他好文 时间:
2021-06-30 18:43:54
阅读次数:
0
快递实体类: 1 package bean; 2 3 import java.io.Serializable; 4 5 /** 6 * 快递类 7 * 8 * @author Administrator 9 */ 10 public class Express implements Serializ ...
分类:
其他好文 时间:
2021-06-28 19:58:28
阅读次数:
0
依赖注入 概念 依赖注入 依赖:指的是Bean对象的创建依赖于容器,Bean对象的依赖资源 注入:指的是Bean对象所依赖的资源,由配置容器来设置和装配 Set注入 要求被注入的属性,必须要有set方法,set方法的方法名是由set+属性首字母大写,如果属性是boolean类型,1没有set属性,是 ...
分类:
编程语言 时间:
2021-06-28 19:41:50
阅读次数:
0
在实际工作中,经常由于设计不佳或者各种因素,导致类之间相互依赖。这些类可能单独使用时不会出问题,但是在使用Spring进行管理的时候可能就会抛出BeanCurrentlyInCreationException等异常 。当抛出这种异常时表示Spring解决不了该循环依赖,本文将简要说明循环依赖,以及S ...
分类:
编程语言 时间:
2021-06-28 19:13:08
阅读次数:
0
一、前言循环依赖:就是N个类循环(嵌套)引用。通俗的讲就是N个Bean互相引用对方,最终形成闭环。在日常的开发中,我们都会碰到类似如下的代码 @Servicepublic class AServiceImpl implements AService { @Autowired private BSer ...
分类:
编程语言 时间:
2021-06-28 19:10:18
阅读次数:
0
Caffeine getIfPresent()返回 null 问题 问题 集成 Caffeine 时, 将 Cache 注册为全局的 Bean, 然后通过@Autowired 自动装配 使用 cache.put(key, val) 和 cache.getIfPresent(key) 放入和获取缓存 ...
分类:
其他好文 时间:
2021-06-28 19:10:03
阅读次数:
0
implementation 'org.greenrobot:eventbus:3.2.0' EventBus package com.qiqi.app.bean; public class EventMessageWrap { public final String message; public ...
分类:
其他好文 时间:
2021-06-28 18:59:05
阅读次数:
0
springboot bean的循环依赖实现 源码分析 本文基于springboot版本2.5.1 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifac ...
分类:
编程语言 时间:
2021-06-28 18:56:06
阅读次数:
0
新建MybatisPlusConfig 配置文件 package com.luna.demo.config; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.pl ...
分类:
其他好文 时间:
2021-06-25 17:27:00
阅读次数:
0