会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Coreqi
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
58
59
60
61
62
63
64
65
66
下一页
2019年1月31日
SpringBoot整合Druid(阿里巴巴)数据源
摘要: (1)、添加相关依赖 (2)、配置配置文件 (3)将配置文件自定义属性和自定义数据源绑定(我配置文件中没有自定义属性),配置Druid监控 (4)访问http://localhost:8080/druid
阅读全文
posted @ 2019-01-31 20:14 SpringCore
阅读(2373)
评论(0)
推荐(0)
编辑
SpringBoot整合Jdbc
摘要: (1)、添加相关依赖 (2)、在配置文件中配置数据源相关信息 (3)、编写service、dao(为了方便我就写在一起了) (4)controller调用即可
阅读全文
posted @ 2019-01-31 19:57 SpringCore
阅读(6519)
评论(0)
推荐(0)
编辑
2019年1月30日
SpringBoot使用外置的Servlet容器
摘要: SpringBoot默认使用嵌入式的Servlet容器,应用打包成可执行的jar包 优点:简单、便携 缺点:默认不支持jsp,优化定制比较复杂(使用定制器serverProperties、自定义EmbeddedServletContainerCustomizer,自己编写嵌入式Servlet容器的创
阅读全文
posted @ 2019-01-30 20:20 SpringCore
阅读(842)
评论(0)
推荐(0)
编辑
2019年1月29日
SpringBoot使用其他的Servlet容器
摘要: 1 2 org.springframework.boot 3 spring-boot-starter-web 4 5 6 7 org.springframework.boot 8 ...
阅读全文
posted @ 2019-01-29 20:55 SpringCore
阅读(536)
评论(0)
推荐(0)
编辑
SpringBoot注册Servlet、Filter、Listener
摘要: SpringBoot默认是以jar包的方式启动嵌入式的Servlet容易来启动SpringBoot的Web应用,没有web.xml文件 因此我们可以使用以下方式来注册Servlet、Filter、Listener。 (1)、注册Servlet (2)、注册Filter (3)、注册Listener
阅读全文
posted @ 2019-01-29 20:37 SpringCore
阅读(412)
评论(0)
推荐(0)
编辑
SpringBoot修改Servlet相关配置
摘要: 第一种方式在配置文件中进行修改 第二种方式在配置类中进行修改
阅读全文
posted @ 2019-01-29 19:34 SpringCore
阅读(3208)
评论(0)
推荐(2)
编辑
2019年1月26日
SpringBoot定制错误的Json数据
摘要: (1)自定义异常处理&返回定制Json数据 缺点:没有自适应效果,只是会返回自定义的json数据 (2) 缺点:可以自适应页面(浏览器返回错误页面,客户端返回Json数据),但不会携带我们自定义数据 (3) 响应自适应,可以携带我们自定义的数据
阅读全文
posted @ 2019-01-26 20:28 SpringCore
阅读(1128)
评论(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
阅读(766)
评论(0)
推荐(0)
编辑
SpringBoot PUT请求
摘要: (1)配置HiddenHttpMethodFilter(SpringMVC需要配置,SpringBoot已经为我们自动配置了) (2)在视图页面创建一个Post Form表单,在表单中创建一个input项,type="hidden" name="_method",value属性值为请求方式
阅读全文
posted @ 2019-01-26 19:45 SpringCore
阅读(1993)
评论(0)
推荐(0)
编辑
SpringBoot拦截器的注册
摘要: (1)、编写拦截器 (2)、对拦截器进行注册
阅读全文
posted @ 2019-01-26 19:37 SpringCore
阅读(7845)
评论(0)
推荐(0)
编辑
上一页
1
···
58
59
60
61
62
63
64
65
66
下一页
公告