- 博客(27)
- 收藏
- 关注
原创 mvn clean package -Dmaven.test.skip=true
mvn clean package -Dmaven.test.skip=true
2020-05-13 14:07:25 1534 1
原创 java.util.LinkedHashMap cannot be cast to com.thirtydays.bes.model.Use
异常情况java.lang.ClassCastException: java.util.LinkedHashMap cannot be cast to com.thirtydays.bes.model.User使用@Cacheable 保存缓存 至 redis 中时,调用保存方法会报 类转换异常代码class cacheService@Cacheable(value = "redisCache1103",key = "T(com.thirtydays.common.constant.CacheK
2020-05-11 17:59:04 488
原创 idea 自用插件
idea 自用插件lombokFindBugs-IDEAMaven Helperalibaba-java-coding-guidelinesTranslation
2020-04-22 16:56:31 215
转载 CentOs7中Mysql8.0设置远程连接
CentOs7中Mysql8.0设置远程连接1 登陆Mysqlmysql -uroot -p输入密码2 选择 mysql 数据库use mysql;在mysql数据库中存储了用户信息的user表3 在 mysql 数据库的 user 表中查看当前 root 用户的相关信息select host, user, authentication_string, plugin from us...
2020-03-28 18:09:32 1259
原创 org.apache.shiro.authc.UsernamePasswordToken
异常2020-02-20 14:31:44.490 WARN 12388 --- [nio-8091-exec-5] o.a.shiro.authc.AbstractAuthenticator : Authentication failed for token submission [org.apache.shiro.authc.UsernamePasswordToken - nul...
2020-02-20 14:37:17 2272
转载 Linux 环境下为VirtualBox安装增强功能
VirtualBox安装CentOS后,再安装增强功能就可以共享文件夹、粘贴板以及鼠标无缝移动,主要步骤如下:1、yum -y update2、yum -y install g++ gcc gcc-c++ make kernel-* # 主要是在安装增强工具提示没有安装这些软件3、yum -y install bzip2* ...
2019-11-20 10:17:10 178
转载 跨域问题
允许整个项目跨域访问,可通过filter来进行过虑: public class SimpleCORSFilter implements Filter{ @Override public void destroy() { } @Override...
2019-11-11 10:22:58 104
原创 RestTemple
简介Spring Web 提供的轻量级Http Client,用于简化Http 调用使用public static void main(String[] args) { RestTemplate restTemplate = new RestTemplate(); // 用HTTP 的get方法去请求,并返回一个对象 String forOb...
2019-10-24 10:59:05 421
原创 MyBatis Generator所遇问题
MyBatis Generator所遇问题通用mapper 地址mysql serverTimezone问题通用mapper 把其他数据库的同名表生成下来通用mapper 地址https://github.com/abel533/Mappermysql serverTimezone问题所遇异常Caused by: com.mysql.cj.core.exceptions.Invalid...
2019-10-23 12:08:33 309
转载 VBOX-CentOS7设置桥接网卡
https://blog.csdn.net/rcjjian/article/details/79879275
2019-07-19 10:44:49 132
转载 could not extract ResultSet
Whitelabel Error PageThis application has no explicit mapping for /error, so you are seeing this as a fallback.Thu Aug 16 16:02:38 CST 2018There was an unexpected error (type=Internal Server Error,...
2019-06-21 11:29:06 345
转载 异常:java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more
软件开发,为了满足开发的需要,jar包版本的更新或bug的修复,会造成 版本不兼容,出现新问题,程序员就是为解决问题出现的,一句话就是我们爱折腾,乐此不彼。异常错误:java.sql.SQLException: The server time zone value '?й???????' is unrecognized or represents more than one time zone...
2019-06-21 10:51:06 280
转载 Disconnected from the target VM, address: '127.0.0.1:62445', transport: 'socket'
如果说maven 依赖没有问题的话,那么最大的可能是端口被占用,完全关闭重新启动试下。
2019-06-04 19:13:55 3978
转载 rabbitmq
[root@tve-centos ~]# systemctl start rabbitmq-server.serviceJob for rabbitmq-server.service failed. See ‘systemctl status rabbitmq-server.service’ and ‘journalctl -xn’ for details.使用journalctl -xe 查...
2019-04-23 16:29:42 144
转载 Http持久连接与HttpClient连接池
Http持久连接与HttpClient连接池 一、背景 HTTP协议是无状态的协议,即每一次请求都是互相独立的。因此它的最初实现是,每一个http请求都会打开一个tcp socket连接,当交互完毕后会关闭这个连接。 HTTP协议是全双工的协议,所以建立连接与断开连接是要经过三次握手与四次挥手的。显然在这种设计中,每次发送Http请求都会消...
2019-03-26 22:50:05 194
转载 Dubbo + Zookeeper入门初探
版权声明:本文版权归Jitwxs所有,欢迎转载,但未经作者同意必须保留原文链接。 https://blog.csdn.net/yuanlaijike/article/details/79654183 </div> <di...
2019-02-24 17:04:10 166
转载 JAVA刚碰见的问题( java.lang.SecurityException: The jurisdiction policy files are not signed by a trusted s
1. failed to load the jni shared library jre bin server jvm.dll 解决:这个主要是eclipse的版本和安装的jdk版本不相同。2. ja...
2019-02-05 23:02:13 2136
转载 启动 eureka client 报错:Parameter 3 of method eurekaRegistration EurekaClientAutoConfiguration
Description:Parameter 3 of method eurekaRegistration in org.springframework.cloud.netflix.eureka.EurekaClientAutoConfiguration$RefreshableEurekaClientConfiguration required a bean of type ‘com.netfli...
2019-02-01 17:22:57 649
转载 Spring boot之路之错误:yml中driver-class-name: com.mysql.jdbc.Driver
yml中driver-class-name: com.mysql.jdbc.Driver无法引用解决方案:1‘可能是没有引用:<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId></depend...
2019-01-31 10:39:47 16749
原创 tomcat 运行自动关闭 与 jenkins
一月 30, 2019 6:19:31 下午 org.apache.catalina.core.StandardService stopInternal信息: Stopping service Catalina一月 30, 2019 6:19:31 下午 jenkins.model.Jenkins cleanUp信息: Stopping Jenkins一月 30, 2019 6:19:32...
2019-01-30 18:31:27 1018
转载 linux环境下安装nginx步骤
开始前,请确认gcc g++开发类库是否装好,默认已经安装。 ububtu平台编译环境可以使用以下指令apt-get install build-essentialapt-get install libtool centos平台编译环境使用如下指令 安装make:yum -y install gcc automake autoconf libtool make 安装g...
2019-01-28 23:08:28 109
转载 openssl make报错
安装openssl 时,make./config: error: the HTTP cache module requires md5 functionsfrom OpenSSL library. You can either disable the module by using–without-http-cache option, or install the OpenSSL libr...
2019-01-28 22:51:22 5667
原创 linux 下 /etc/profile 重启不生效
https://blog.csdn.net/hndfwxf/article/details/44592689将环境变量设置写入/etc/bashrc 文件中使用cd 进入,~/.bashrc 可能会有权限不足问题
2019-01-28 16:18:18 5107
转载 在前后端分离的SpringBoot项目中集成Shiro权限框架
项目背景&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 公司在几年前就采用了前后端分离的开发模式,前端所有请求都使用ajax。这样的项目结构在与CAS单点登录等权限管理框架集成时遇到了很多问题,使得权限部分的代码冗长丑陋,CAS的各种重定向也使得用户体验很差,在前端使用vue-router管理页面跳转时,问
2019-01-16 10:17:20 13
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人