bug小记
三月不灭
这个作者很懒,什么都没留下…
展开
-
Tomcat服务端部署成功但外部访问不到
#查看某服务进程信息ps -ef | grep tomcat#查看开放的端口netstat -tunlp原创 2022-06-25 21:55:21 · 1922 阅读 · 0 评论 -
异常:Error resolving template “xxx“, template might not exist or might not be accessible...解决办法
1的路径是 ModelAndView mv = new ModelAndView(“/test/mail”);2的路径是ModelAndView mv = new ModelAndView(“demo”);原创 2022-04-29 14:41:17 · 862 阅读 · 0 评论 -
CentOS中Docker容器报 OCI 错误,显示没有 ip addr | ifconfig | ping 命令|bash: ip/ping/ifconfig: command not found
错误日志[root@us4ci6jaxom1jjz2 tomcat]# docker exec -it tomcat01 ip addrOCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "ip": executable file not found in $PATH: unknown报错是因为可执行文件不存在,进入tomcat01执行指令是否能成原创 2022-04-10 15:34:21 · 3293 阅读 · 0 评论 -
redis连接超时,本地连接不上服务器上的redis
看了众多帖子,泪崩,后面终于解决惹wwwwwwawsl总结大概如下几点首先,如大家所说# bind 127.0.0.1 #注释掉 默认只接受本机的访问请求,不写则无限制接受任何ip地址访问 protected-mode no #改成no,关闭redis的保护机制daemonize yes #改成yes,允许redis在后台运行然候看看能正常访问不,如果不能关闭防火墙再试试(如果不想关闭防火墙,也可以开放6379端口号)//查看防火墙状态systemctl status fire原创 2022-03-12 11:23:48 · 3308 阅读 · 0 评论 -
端口被占用解决办法
PS C:\Users\86150> netstat -ano|findstr 8082 #查看占用端口号的线程 TCP 0.0.0.0:8082 0.0.0.0:0 LISTENING 16328 TCP [::]:8082 [::]:0 LISTENING 16328PS C:\Users\86150> taskkill /f /t /im原创 2022-02-27 20:26:00 · 170 阅读 · 0 评论 -
springboot使用了pageHelper一直报空指针异常
没有使用pagehelper接口能正常运行,但是使用了就报空指针异常,找了好久原因,最后从版本问题来解决,用了一系列pagehelper-spring-boot-starter,依然包空指针如:<!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper-spring-boot-starter --> <dependency> <groupId>.原创 2022-02-19 20:21:45 · 2148 阅读 · 0 评论 -
‘AutoGenerator()‘ has private access in ‘com.baomidou.mybatisplus.generator.AutoGenerator
使用代码生成器,不知道为啥一直报红自己用的两个依赖是 <!--代码生成器--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-generator</artifactId> <version>3.5.1</version&原创 2022-01-28 23:05:52 · 4592 阅读 · 7 评论 -
Springboot测试类配置的数据源相关问题
问题:一直报dataSource找不到No bean named ‘dataSource’ available我是通过导入jdbc或者mybatis依赖解决的 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId>原创 2022-01-28 17:11:49 · 2124 阅读 · 0 评论 -
Cannot resolve method ‘of‘ in ‘PageRequest‘
Cannot resolve method ‘of’ in ‘PageRequest’在写springboot项目时,PageRequest.of一直()爆红。原因是官方表示2.0版本后,使用 of(…) 方法代替 PageRequest(…)构造器,所以你的springboot版本需要是2.0以后的。通过此方法解决了问题。 <parent> <groupId>org.springframework.boot</groupId>原创 2022-01-25 23:02:00 · 1709 阅读 · 0 评论 -
查看Cglib生成的Class(字节码)文件
原创 2022-01-24 19:06:33 · 734 阅读 · 0 评论