戴着假发的程序员出品 抖音ID:戴着假发的程序员 欢迎关注 [查看视频教程] 源码: 1 @java.lang.Deprecated 2 org.springframework.beans.factory.annotation.Autowire autowire() default org.spri ...
分类:
其他好文 时间:
2020-10-07 20:49:39
阅读次数:
23
;(function(global,factory){ typeof exports 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define 'function' && define ...
分类:
其他好文 时间:
2020-09-24 22:08:52
阅读次数:
79
org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [applicationContext.xml]; ne ...
分类:
编程语言 时间:
2020-09-21 12:02:35
阅读次数:
53
整合的方式新建maven项目引入依赖包配置资源文件案例实操新建maven项目新建maven项目spring_mybatis目录结构如下:主目录包:?com.xxx.dao、?com.xxx.mapper、?com.xxx.service、?com.xxx.service.impl测试包:spring_mybatis引入依赖包打开pom.xml开始添加依赖包<?xmlversion="1.0"
分类:
编程语言 时间:
2020-09-18 12:19:06
阅读次数:
48
Swagger接口文档,在线自动生成模板和页面。服务器地址加上swagger-ui.html后缀即可访问到(https://域名:端口号/swagger-ui.html)。 使用时在java代码中引用navan管理pom.xml中添加依赖: <!-- Swagger-mvc --> <depende ...
分类:
其他好文 时间:
2020-09-18 00:51:54
阅读次数:
27
啥是循环依赖? 下面这种情况比较常见,A中注入了属性B,B中注入了A属性。 @Component public class A { @Autowired private B b; //在A中注入B } @Component public class B { @Autowired private A ...
分类:
编程语言 时间:
2020-09-17 21:22:08
阅读次数:
36
package club.interview.algorithm.print; import io.netty.util.concurrent.DefaultThreadFactory; import java.util.concurrent.*; /** * 多线程打印 * -- 2个线程交替打印 ...
分类:
编程语言 时间:
2020-09-17 19:59:50
阅读次数:
38
先看容器部分,创建容器ContextLoader tomcat的ServletContext继承于javax.servlet.ServletContext,javax.servlet.ServletContextListener监听到tomcat启动 ContextLoaderListener是sp ...
分类:
编程语言 时间:
2020-09-17 19:20:20
阅读次数:
33
5、编写servlet //这个版本将每个重要的操作都封装成了方法,只是在doGet里面调用,层次更加清楚 package com.thhh.servlet; import org.apache.commons.fileupload.FileItem; import org.apache.commo ...
分类:
编程语言 时间:
2020-09-17 19:08:53
阅读次数:
29
分类: (1)简单工厂(Simple Factory)模式,又称静态工厂方法模式(Static Factory Method Pattern)。 (2)工厂方法(Factory Method)模式,又称多态性工厂(Polymorphic Factory)模式或虚拟构造子(Virtual Constr ...
分类:
编程语言 时间:
2020-09-03 17:02:45
阅读次数:
49