最新 最热

php设计模式(三):工厂方法模式 (Factory Method)

工厂方法又称为:虚拟构造函数、Virtual Constructor、Factory Method。定义一个用于创建对象的接口,让子类决定实例化哪一个类,工厂方法使一个类的实例化延迟到其子类中。...

2023-09-18
0

聊聊springboot tomcat的maxHttpFormPostSize

本文主要研究一下spring boot tomcat的maxHttpFormPostSize参数

2023-08-31
0

word导出03

public static void exportWordImg(String wordpath,List<String> contentlist,String[] imglist) throws Exception{         exportQuestionWord t=new exportQuestionW...

2023-06-29
0

SpringBoot集成ElasticSearch在启动时报availableProcessors is already set to [8], rejecting [8]

项目基于SpringBoot并且集成ElasticSearch,今天在编写测试类准备进行单元测试时,报了如下这个错误。

2023-05-12
0

项目依赖问题导致No qualifying bean of type 'org.apache.ibatis.session.SqlSessionFactory' available

A项目之前一直都是好好的,但是某天下午启动的时候报错,报错见下,报错原因是org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type &#x27;org.apache.ibatis.session.Sq......

2023-05-12
0

required a bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs‘ that could not b

Eureka 错误收集:[ main] s.c.a.AnnotationConfigApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springfram...

2023-05-05
0

SpringBoot多数据源unsatisfied dependency expressed through method 'entityManagerFactoryBuilder...

本来的项目(基于SpringBoot 2.0.5-RELEASE)集成了JPA、mybatis的注解、XML方式访问DB。 后面集成多数据源的时候启动SpringBoot时出现了如下错误:

2023-05-05
0

mapper注入失败问题解决 {@org.springframework.beans.factory.annotation.Autowired(required=true)}

好久不搭架构,今天使用spring+springmvc整合mabytis的时候,坑爹的两个问题发生了。

2023-05-04
0

php设计模式(三):工厂方法模式 (Factory Method)

工厂方法又称为:虚拟构造函数、Virtual Constructor、Factory Method。定义一个用于创建对象的接口,让子类决定实例化哪一个类,工厂方法使一个类的实例化延迟到其子类中。...

2023-04-17
0

Java抽象工厂模式的使用方法

如果将此家庭看成一个工厂(用FamilyFactory类表示),那么爷爷、爸爸、儿子分在男性子工厂(用maleFamilyFactory类表示),奶奶,妈妈、女儿分在女性子工厂(用femaleFamilyFactory类表示),狗和猫分在动物子工厂(用animalFamilyFactor...

2023-03-21
0