springboot
luguz
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
MybatisPlus+Springboot报错 Error creating bean with name ‘xxxMapper‘ defined in file [F:\Java\heig
MybatisPlus+Springboot报错 Error creating bean with name 'xxxMapper' defined in file原创 2022-08-15 22:12:43 · 4490 阅读 · 1 评论 -
fegin feign.FeignException: status 404 reading StudenService#getAll()
feign.FeignException: status 404 reading StudenService#getAll()原创 2022-07-27 10:48:14 · 516 阅读 · 0 评论 -
linux shell脚本使用外部yaml文件启动java程序
linux shell脚本使用外部yaml文件启动java程序原创 2022-07-22 10:35:51 · 1531 阅读 · 0 评论 -
SpringMVC常用请求方法,注解
SpringMVC常用请求方法、注解以及request对象原创 2022-07-22 10:29:05 · 560 阅读 · 0 评论 -
Maven 的pom文件夹变成灰色
Maven 的pom文件夹变成灰色原创 2022-07-20 21:29:11 · 3247 阅读 · 0 评论 -
springboot2+mybatisplus+redis+generator代码生成器环境搭建
搭建一个springboot+mybatisplus+redis的项目环境,其中使用generator代码生成器完成基本的代码生成在创建spring项目时勾选 springboot mybatis等基本依赖(后续有shiro,json等需求再添加)引入需求的依赖根据自己的需求更改<dependencies> <dependency> <groupId>org.springframework.boot</groupId&原创 2022-03-02 22:17:05 · 666 阅读 · 0 评论 -
Eureka+Reign web访问失效
在实验Springboot+Eureka+Reign时,需要将api服务的原创 2022-02-07 14:32:03 · 312 阅读 · 0 评论 -
springboot整合 springCloud出现 javax.servlet.ServletContext.getVirtualServerName()
springboot整合 springCloud访问时发生错误,主要报错信息为Description:An attempt was made to call a method that does not exist. The attempt was made from the following location: org.apache.catalina.authenticator.AuthenticatorBase.startInternal(AuthenticatorBase.java原创 2022-02-06 11:03:30 · 2038 阅读 · 0 评论 -
下载地址 zookeeper
各个版本下载http://archive.apache.org/dist/zookeeper/原创 2022-01-29 12:00:33 · 1564 阅读 · 0 评论 -
springboot整合Redis java.lang.UnsupportedClassVersionError
养成好习惯第一天新建一个maven项目想整合springboot跟redis,写了五行测试代码运行编译的时候直接报错org/springframework/nativex/NativeListener has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file ver原创 2022-01-28 22:04:13 · 1366 阅读 · 0 评论 -
springboot各种启动器
web <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>thymeleaf <dependency> <groupId>o原创 2022-01-26 10:47:54 · 206 阅读 · 0 评论 -
Sptingboot集合Security依赖失效
在集合Sptingboot集合Security时,刚开始用的好好的可以正常使用,过了一会以后如何整个Security就崩掉了,相关的类全部无法引入,删除依赖重新下载,清除缓存重启系统都试过了,仍无法引入,最后解决办法发降低Springboot的版本pom文件重新下载又恢复正常 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-b原创 2022-01-25 20:16:38 · 527 阅读 · 0 评论 -
springboot集合druid连接池
在pom中添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>原创 2022-01-25 10:31:10 · 2015 阅读 · 0 评论 -
springboot与Thymeleaf传参与接收
thtmeleaf传参方法一th:href="@{/editEmp?id=}+${emp.getId()}"链接形式 http://localhost:8081/editEmp?id=0接收方法 @GetMapping("/editEmp") public String editEm(@RequestParam("id")Integer id, Model model){方法二 th:href="@{/editEmp(id=${t.id})}" //多个参数 th:href=原创 2022-01-24 17:34:09 · 1194 阅读 · 0 评论
分享