摘要:
在用mybatis-plus生成代码的时候,生成代码后,springboot项目启动不了,总是这样的错误: org.springframework.beans.factory.UnsatisfiedDependencyException XXX No qualifying bean of type 阅读全文
摘要:
springboot中的跨域问题,如果不注意的话,容易造成错误,本次springboot版本为2.13 前端错误信息: Access to XMLHttpRequest at 'http://localhost:8080/user/loginOn' from origin 'http://local 阅读全文
摘要:
根据官方文档到的说明 public interface ServletContainerInitializer Interface which allows a library/runtime to be notified of a web application's startup phase a 阅读全文
摘要:
1、基本概念 单例设计模式,就是采取一定的方法保证在整个的软件系统中,对某个类只能存在一个对象实例, 并且该类只提供-一个取得其对象实例的方法(静态方法)。如:一般情况下,数据库的连接 2、饿汉式 2.1、饿汉式(静态常量) class Singleton { private final stati 阅读全文