本文主要记录我使用idea搭建springboot项目时小功能配置
ueditor富文本编辑器
- yml文件配置
1
2
3# 富文本编辑器
ue:
server-url: /ueditor/jsp/controller - 依赖导入
1
2
3
4
5<dependency>
<groupId>cn.jasonone.ueditor</groupId>
<artifactId>ueditor-spring-boot-starter</artifactId>
<version>1.1.4</version>
</dependency> - 导入ueditor
1
<script type="text/plain" id="editor" name="sonContent"></script>
SpringBoot的yml文件配置
1 | server: |
Invalid bound statement(not found),访问不到mapper.xml
解决方法
application配置文件中mybatis配置
1 | mybatis: |
代码正确,无法访问controller层方法
其他包都得放在启动类包下
拦截器
登录拦截器
1.LoginController主要代码
1 | /** |
2.LoginHandlerInterceptor 登录拦截器
1 |
|
3.配置WebMvcConfigurer 拦截器,将登录拦截器添加进去
1 |
|