会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Coreqi
博客园
首页
新随笔
联系
管理
上一页
1
···
61
62
63
64
65
66
67
68
69
下一页
2019年1月29日
SpringBoot修改Servlet相关配置
摘要: 第一种方式在配置文件中进行修改 第二种方式在配置类中进行修改
阅读全文
posted @ 2019-01-29 19:34 SpringCore
阅读(3252)
评论(0)
推荐(2)
2019年1月26日
SpringBoot定制错误的Json数据
摘要: (1)自定义异常处理&返回定制Json数据 缺点:没有自适应效果,只是会返回自定义的json数据 (2) 缺点:可以自适应页面(浏览器返回错误页面,客户端返回Json数据),但不会携带我们自定义数据 (3) 响应自适应,可以携带我们自定义的数据
阅读全文
posted @ 2019-01-26 20:28 SpringCore
阅读(1169)
评论(0)
推荐(0)
SpringBoot定制错误页面
摘要: (1)有模板引擎的情况下,例如404错误,将会在thymeleaf的templates的error下寻找404.html,如果找不到再寻找4xx.html *所有4开头的错误状态码如果找不到特定的html页面将会指向4xx.html 页面可以获取到的信息 timestamp:时间戳 status:状
阅读全文
posted @ 2019-01-26 20:13 SpringCore
阅读(783)
评论(0)
推荐(0)
SpringBoot PUT请求
摘要: (1)配置HiddenHttpMethodFilter(SpringMVC需要配置,SpringBoot已经为我们自动配置了) (2)在视图页面创建一个Post Form表单,在表单中创建一个input项,type="hidden" name="_method",value属性值为请求方式
阅读全文
posted @ 2019-01-26 19:45 SpringCore
阅读(2017)
评论(0)
推荐(0)
SpringBoot拦截器的注册
摘要: (1)、编写拦截器 (2)、对拦截器进行注册
阅读全文
posted @ 2019-01-26 19:37 SpringCore
阅读(7880)
评论(0)
推荐(0)
SpringBoot整合国际化功能
摘要: (1)、编写国际化配置文件 在resources下新建i18n文件夹,并新建以下文件 ①index.properties 1 username=username ②index_en_US.properties 1 username=username ③index_zh_CN.properties 1
阅读全文
posted @ 2019-01-26 19:13 SpringCore
阅读(7317)
评论(0)
推荐(0)
SpringBoot扩展SpringMVC自动配置
摘要: SpringBoot中自动配置了 ViewResolver(视图解析器) ContentNegotiatingViewResolver(组合所有的视图解析器) 自动配置了静态资源文件夹、静态首页、favicon.ico及Webjars Converter(转换器,转换类型使用) Formatter(
阅读全文
posted @ 2019-01-26 17:34 SpringCore
阅读(825)
评论(0)
推荐(0)
SpringBoot使用thymeleaf模板引擎
摘要: (1)、添加pom依赖 * SpringBoot1.x 默认的thymeleaf版本低,如果要自定义版本,需要在pom properties 覆写SpringBoot默认的thymeleaf版本号 * SpringBoot2.x 无需此操作 (2)、将Html页面放至classpath:/templ
阅读全文
posted @ 2019-01-26 12:40 SpringCore
阅读(1616)
评论(0)
推荐(0)
SpringBoot处理静态资源的两种方式
摘要: 静态资源是指 》 CSS、JS之类的文件 首先创建SpringBoot Web项目 添加Spring Boot Web Starter 第一种方式(将静态资源文件放至静态资源文件夹) ① “/” 当前项目的根路径 ②classpath:/META-INF/resources/ ③classpath:
阅读全文
posted @ 2019-01-26 12:25 SpringCore
阅读(3528)
评论(0)
推荐(0)
SpringBoot整合日志
摘要: JCL(Jakarta Commons Logging) SLF4J(Simple Logging Facade for Java) Jboss-Logging Log4J JUL(java.util.logging) Log4j2 Logback Sping框架默认使用JCL SpingBoot框
阅读全文
posted @ 2019-01-26 11:17 SpringCore
阅读(1311)
评论(0)
推荐(0)
上一页
1
···
61
62
63
64
65
66
67
68
69
下一页
公告