上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 81 下一页
摘要: mvc spring.mvc.async.request-timeout=设定async请求的超时时间,以毫秒为单位,如果没有设置的话,以具体实现的超时时间为准,比如tomcat的servlet3的话是10秒. spring.mvc.date-format=设定日期的格式,比如dd/MM/yyyy. 阅读全文
posted @ 2020-03-21 21:20 ppjj 阅读(817) 评论(0) 推荐(0)
摘要: 【1】SpringBoot的默认错误处理 ① 浏览器访问 请求头如下: ② 使用“PostMan”访问 { "timestamp": 1529479254647, "status": 404, "error": "Not Found", "message": "No message availabl 阅读全文
posted @ 2020-03-21 21:18 ppjj 阅读(1577) 评论(0) 推荐(0)
摘要: 1、问题idea编译(shift+f10)报错:Cannot start compilation: the output path is not specified for module “Test”. Specify the out.2、解决:设置Project中的”Project compile 阅读全文
posted @ 2020-03-21 20:22 ppjj 阅读(3945) 评论(0) 推荐(1)
摘要: 1. 什么是循环依赖? 循环依赖其实就是循环引用,代码中标记为RuntimeBeanReference,也就是两个或则两个以上的bean互相持有对方,最终形成闭环。比如A依赖于B,B依赖于C,C又依赖于A。如下图: 注意,这里不是函数的循环调用,是对象的相互依赖关系。循环调用其实就是一个死循环,除非 阅读全文
posted @ 2020-03-14 16:07 ppjj 阅读(935) 评论(1) 推荐(2)
摘要: Http的Get,POST Get请求包括两个部分: request line(包括method,request uri,protocol version)) header 基本样式: GET /?name=XXG&age=23 HTTP/1.1 > request line Host: 127.0 阅读全文
posted @ 2020-03-14 16:02 ppjj 阅读(499) 评论(0) 推荐(0)
摘要: 目录 1. 创建应用上下文 2. DefaultResourceLoader 3. AbstractApplicationContext 4. GenericApplicationContext 4.1 SimpleAliasRegistry 4.2 DefaultSingletonBeanRegi 阅读全文
posted @ 2020-03-14 15:56 ppjj 阅读(2652) 评论(0) 推荐(0)
摘要: 测试代码: package com.github.abel533.event; import com.github.abel533.C; import org.springframework.context.ApplicationEvent; import org.springframework.c 阅读全文
posted @ 2020-03-14 15:54 ppjj 阅读(4167) 评论(0) 推荐(0)
摘要: 1、前言简单介绍 SpringBoot的自动配置就是SpringBoot的精髓所在;对于SpringBoot项目是不需要配置Tomcat、jetty等等Servlet容器,直接启动application类既可,SpringBoot为什么能做到这么简捷?原因就是使用了内嵌的Servlet容器,默认是使 阅读全文
posted @ 2020-03-14 15:31 ppjj 阅读(6499) 评论(0) 推荐(1)
摘要: 方法1:将SecurityContextHolder的策略更改为MODE_INHERITABLETHREADLOCAL 方法2:将上面的方法用java方法实现 方法3:AsyncTaskExecutor包装在DelegatingSecurityContextAsyncTaskExecutor中,该D 阅读全文
posted @ 2020-01-20 22:21 ppjj 阅读(1116) 评论(0) 推荐(0)
摘要: 本来回调函数onPhotoURISuccess只能有一个参数的,现在可以使用闭包的方法,添加一个参数。 阅读全文
posted @ 2020-01-13 22:03 ppjj 阅读(798) 评论(0) 推荐(0)
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 81 下一页