自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 记录一下spring boot+spring security认证authorities反序列化失败的错误

控制台报错如下:2021-07-30 14:54:14.423 ERROR 2348 --- [nio-9002-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.spr

2021-07-30 15:00:33 4069 3

原创 记录一次spring boot+spring security整合Mybatis过程中用PageHelper分页Users查询报空指针异常的错误

实体Users实现了UserDetails接口,重写方法 getAuthorities()时报了空指针异常,原因:未做判空,正确写法如下@Override public Collection<? extends GrantedAuthority> getAuthorities() { List<SimpleGrantedAuthority> authorities = new ArrayList<>(); if (roles

2021-07-30 14:15:05 542

原创 spring data jpa 分页、 Specification查询完整示例(精确查询、模糊查询、区间查询)

1、实体(偷懒,字段注解没加全)@Entity@Table(name = "PRODUCT")public class ProductDomain extends BaseDomain implements Serializable { private static final long serialVersionUID = 445278702962770847L; /** * id */ @Id @GeneratedValue(generato

2021-07-27 16:54:34 1064

原创 spring boot+vue实现文件上传功能

后端代码@RequestMapping("/uploadImg") @ResponseBody public JsonResult uploadImg(@RequestParam(value = "file", required = false)MultipartFile file, HttpServletRequest request) { String path = "D:/ieop/img"; String fileName = file.getO

2021-07-26 17:46:24 616

原创 vue-quill-editor+spring boot+elementui实现富文本编辑器图片上传并回显

一、前端部分1. 安装依赖npm install vue-quill-editor –save2. main.js引入import QuillEditor from 'vue-quill-editor'import 'quill/dist/quill.bubble.css'import 'quill/dist/quill.core.css'import 'quill/dist/quill.snow.css'Vue.use(QuillEditor)3.新建公共组件Editor.

2021-07-26 17:39:14 1177 2

原创 spring boot+spring security配置访问服务器静态资源

有时候想把一些静态资源放在服务器本地,不在默认的静态资源路径里,前台无法访问,所以我们需要进行配置:1. 重写WebMvcConfigurationSupportimport org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;import org.springframework.

2021-07-26 10:50:35 911 1

原创 spring boot+spring security+jwt+vue整合前后端分离token权限认证项目详细过程代码 含AES加密

准备前提条件:已搭好一个spring boot后台项目及vue前台项目目录一、后台1、依赖2、继承WebSecurityConfigurerAdapter适配器3、自定义用户名密码校验 MyAuthenticationProvider4、登录成功处理逻辑 CustomizeAuthenticationSuccessHandler5、登录失败处理逻辑 CustomizeAuthenticationFailureHandler6、匿名用户访问无权限资源时的异常处理 Customi

2021-07-21 17:56:39 1374

原创 Proxy error: Could not proxy request XXX from XXX to XXX

先介绍一下环境,Windows10系统,vue-cli4 再直接讲结果,vue.config.js配置如下:注意:target加上前缀http://因为之前Windows和Linux写法是有区别的,Windows是直接ip+端口就可以,vue-cli4这样写就会报如题目所示错误。再加上axios相关配置及使用:先安装axios:npm install axios --savemain.js引入:import axios from 'axios'axios...

2021-07-19 10:12:47 9090

原创 求平均成绩大于 60 分的学生名字和他们个人的平均分。

SELECT st.s_id, st.s_name, ROUND(AVG(sc.s_score), 2)FROM student stLEFT JOIN score sc ON st.s_id = sc.s_idGROUP BY st.s_id HAVING AVG(sc.s_score) >=60;

2021-05-25 10:14:38 866

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除