自定义 1.引入依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.17</version> </dependency> 2.写一个自己的配置类 分析: 在springb ...
分类:
编程语言 时间:
2021-07-01 17:15:58
阅读次数:
0
依赖包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 配置文件(application.pr ...
分类:
编程语言 时间:
2021-07-01 16:26:20
阅读次数:
0
一.通过Result类实现返回数据 //用户注册 @PostMapping("/registerUser") public Result registerUser(@RequestBody User user){ Result result = Results.successWithData( us ...
分类:
编程语言 时间:
2021-06-30 18:33:50
阅读次数:
0
自定义404 5xx 页面,在文件夹下添加一个error的文件夹,里面添加对应的html 根据报错显示对应的html 自定义显示,在返回的信息中,浏览器返回的是json,此时包含了5个消息,时间、错误信息、堆栈、路径、状态码,只要是json信息都可以取到,通过thymeleaf里的th:text=" ...
分类:
编程语言 时间:
2021-06-30 18:28:26
阅读次数:
0
一般在application.properties中配置服务器端口以及连接数据库配置,还可配置对应mapper.xml的位置供容器扫描,也可配置驼峰以及包实体类包别名等 server.port=8080 spring.datasource.driver-class-name=com.mysql.cj ...
分类:
移动开发 时间:
2021-06-30 18:26:12
阅读次数:
0
@GetMapping("/send") public String getmessage(HttpServletRequest request) { request.setAttribute("msg","跳转"); //设置参数 request.setAttribute("code",123); ...
分类:
编程语言 时间:
2021-06-29 16:08:05
阅读次数:
0
安装 教程,https://www.graphql-java.com/tutorials/getting-started-with-spring-boot/ ...
分类:
其他好文 时间:
2021-06-28 20:30:41
阅读次数:
0
1.配置 pom <shiro.version>1.4.0</shiro.version> <!--shiro start--> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> ...
分类:
编程语言 时间:
2021-06-28 19:50:46
阅读次数:
0
1、SpringMVC自动配置概览 Spring Boot provides auto-configuration for Spring MVC that works well with most applications.(大多场景我们都无需自定义配置) The auto-configuratio ...
分类:
编程语言 时间:
2021-06-28 19:31:50
阅读次数:
0
1、前言 很多Spring Boot应用使用了Session作为缓存,一般会在用户登录后保存用户的关键信息,如: 用户ID。 用户名。 用户token。 权限角色集合。 等等。。。 在管理员修改了用户的权限后,希望能立即生效。此时,会发现一个问题,管理员的HTTP请求对象,只能获取自己的Sessio ...
分类:
其他好文 时间:
2021-06-28 19:07:45
阅读次数:
0