随笔分类 -  【110】Java SpringBoot

摘要:序言 docker build -t springboot . docker run --name springboot -d -p 8080:8080 springboot sudo docker run springboot http://192.168.229.133:8080/home/in 阅读全文
posted @ 2021-12-26 15:25 ~沐风 阅读(32) 评论(0) 推荐(0) 编辑
摘要:序言 资料 alibaba/easyexcel 阅读全文
posted @ 2020-11-29 13:02 ~沐风 阅读(70) 评论(0) 推荐(0) 编辑
摘要:序言 Spring WebFlux是Spring Framework 5.0中引入的新的反应式Web框架与Spring MVC不同,它不需要Servlet API,完全异步和非阻塞,并 通过Reactor项目实现Reactive Streams规范。 响应式编程的返回值必须是 Flux 或者 Mon 阅读全文
posted @ 2019-03-10 12:03 ~沐风 阅读(792) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/w05980598/article/details/79053209 阅读全文
posted @ 2019-03-10 11:59 ~沐风 阅读(180) 评论(0) 推荐(0) 编辑
摘要:序言 资料 https://blog.csdn.net/KingBoyWorld/article/details/78948304 阅读全文
posted @ 2019-03-02 23:55 ~沐风 阅读(178) 评论(0) 推荐(0) 编辑
摘要:概述 性能方面 hikariCP>druid>tomcat-jdbc>dbcp>c3p0 。hikariCP的高性能得益于最大限度的避免锁竞争。 druid功能最为全面,sql拦截等功能,统计数据较为全面,具有良好的扩展性。 Druid application.properties #mybatis 阅读全文
posted @ 2019-03-02 14:32 ~沐风 阅读(306) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_28143647/article/details/79789368 阅读全文
posted @ 2019-02-25 12:45 ~沐风 阅读(320) 评论(0) 推荐(0) 编辑
摘要:在controller上添加@CrossOrigin注解,如下: 阅读全文
posted @ 2019-02-11 17:04 ~沐风 阅读(121) 评论(0) 推荐(0) 编辑
摘要:资料 https://www.cnblogs.com/toutou/p/9843588.html 阅读全文
posted @ 2019-02-09 18:43 ~沐风 阅读(126) 评论(0) 推荐(0) 编辑
摘要:概述 在做web开发的时候,过滤器(Filter)和拦截器(Interceptor)很常见,通俗的讲,过滤器可以简单理解为“取你所想取”,忽视掉那些你不想要的东西;拦截器可以简单理解为“拒你所想拒”,关心你想要拒绝掉哪些东西,比如一个BBS论坛上拦截掉敏感词汇。 1、过滤器和拦截器触发时机不一样,过 阅读全文
posted @ 2019-02-09 18:40 ~沐风 阅读(414) 评论(0) 推荐(0) 编辑
摘要:序言 数据库有五张表(userInfo,uerrole,role,rolepermission,permission) userInfo(id,username,password) userrole(uid,roleid) role(id,role) rolepermission(roleid,pe 阅读全文
posted @ 2019-01-20 15:10 ~沐风 阅读(203) 评论(0) 推荐(0) 编辑
摘要:1 阅读全文
posted @ 2019-01-20 15:04 ~沐风 阅读(113) 评论(0) 推荐(0) 编辑
摘要:org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'multipart/form-data;boundary= 在使用工具测试(Postman、 swagger )时报如下异常 解决方案: 去掉 @Req 阅读全文
posted @ 2019-01-19 17:14 ~沐风 阅读(212) 评论(0) 推荐(0) 编辑
摘要:错信息generate failed: Exception getting JDBC Driver: com.mysql.jdbc.Driver 上网查了一下,发现原来是generator这个插件在运行的时候找不到com.mysql.jdbc.Driver的依赖,把pom文件中的这个依赖移到gene 阅读全文
posted @ 2019-01-19 11:41 ~沐风 阅读(556) 评论(0) 推荐(0) 编辑
摘要:单元测试 1、在pom包中添加spring-boot-starter-test包引用 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> 阅读全文
posted @ 2018-07-30 16:18 ~沐风 阅读(888) 评论(0) 推荐(0) 编辑
摘要:mongodb简介 传统的关系数据库一般由数据库(database)、表(table)、记录(record)三个层次概念组成, MongoDB是由数据库(database)、集合(collection)、文档对象(document)三个层次组成。 mongodb使用 1、pom包配置 2、在appl 阅读全文
posted @ 2018-07-30 10:45 ~沐风 阅读(403) 评论(0) 推荐(0) 编辑
摘要:springboot默认已经帮我们实行了,只需要添加相应的注解就可以实现。 1、pom包配置 2、启动类启用定时 在启动类上面加上@EnableScheduling即可开启定时 3、创建定时任务实现类 定时任务1: 定时任务2: 测试 参数说明 @Scheduled 参数可以接受两种定时的设置,一种 阅读全文
posted @ 2018-07-30 09:26 ~沐风 阅读(216) 评论(0) 推荐(0) 编辑
摘要:Redis实战代码 1、引入 spring-boot-starter-redis 2、添加配置文件 3、添加cache的配置类 package cn.cnki.ref.config; import java.lang.reflect.Method; import org.springframewor 阅读全文
posted @ 2018-07-29 17:47 ~沐风 阅读(219) 评论(0) 推荐(0) 编辑
摘要:自定义Filter 我们常常在项目中会使用filters用于录调用日志、排除有XSS威胁的字符、执行权限验证等等。 Spring Boot自动添加了OrderedCharacterEncodingFilter和HiddenHttpMethodFilter,并且我们可以自定义Filter。 两个步骤: 阅读全文
posted @ 2018-07-29 16:54 ~沐风 阅读(1312) 评论(0) 推荐(0) 编辑
摘要:简单使用 发送邮件应该是网站的必备功能之一,什么注册验证,忘记密码或者是给用户发送营销信息。最早期的时候我们会使用JavaMail相关api来写发送邮件的相关代码,后来spring退出了JavaMailSender更加简化了邮件发送的过程,在之后springboot对此进行了封装就有了现在的spri 阅读全文
posted @ 2018-07-27 22:46 ~沐风 阅读(235) 评论(0) 推荐(0) 编辑