问题解决
Mr-ZhangChao
拥有4年后台开发经验,慢慢的被腐蚀,
人不该堕落,走出舒适区,向前进!
展开
-
TypeHandler出现问题
TypeHandler出现问题环境描述springboot + mybatis配置文件#默认使用配置spring: profiles: active: pro #公共配置与profiles选择无关mybatis: typeAliasesPackage: com.example mapperLocations: classpath:mapper/*.xml--- #开发配置spring: profiles: dev datasource: url:原创 2020-05-09 17:47:51 · 842 阅读 · 0 评论 -
mysql中忘记了root用户的密码?
1. cmd -- > net stop mysql 停止mysql服务 * 需要管理员运行该cmd 2. 使用无验证方式启动mysql服务: mysqld --skip-grant-tables 3. 打开新的cmd窗口,直接输入mysql命令,敲回车。就可以登录成功 4. use mysql; 5. update user set pas...原创 2018-08-14 22:08:34 · 126 阅读 · 0 评论 -
虚拟机安装mac注意事项(完美解决虚拟机安装mac的分辨率问题)
磁盘需要抹掉 分配内存资源大于2G 其中commond + R 键可以使用VM中虚拟机->电源选项->打开电源时进入固件然后进入boos系统 选择Enter setup-> Boot from a file-> Recovery HD,-> com.apple.recovery.boot-> boot.efi然后静静的等待。。。 rebo...原创 2018-08-24 14:15:10 · 27068 阅读 · 2 评论 -
Linux下FTP连接报错530 Permission denied解决方法
错误信息如下: [root@localhost apps]# ftp 10.xxx.xxx.xxx Connected to 10.xxx.xxx.xxx 220 (vsFTPd 2.0.5) 530 Please login with USER and PASS. 530 Please login with USER and PASS. KERB...原创 2018-08-31 16:25:57 · 28782 阅读 · 1 评论 -
SSM小技巧(一)、Controller中互相调用session中存储的内容
https://blog.csdn.net/death05/article/details/51457196转载 2018-10-24 20:50:51 · 4686 阅读 · 0 评论 -
org.apache.catalina.core.StandardServer.await A valid shutdown command was received via the shutdown
tomcat异常关闭原创 2019-07-06 16:41:49 · 12465 阅读 · 0 评论 -
Spring Boot配置swagger2不被拦截器拦截 ,swagger无法正常展示
@Configuration@EnableWebMvcpublic class WebConfig implements WebMvcConfigurer { @Bean AuthInterceptor localInterceptor() { return new AuthInterceptor(); } @Override public ...转载 2019-07-31 10:05:14 · 9316 阅读 · 3 评论 -
fastjson反序列化嵌套类为对应实体类 ResultObject的反序列化及泛型优化
有用在fastJson反序列化时,指定内部的泛型T为对应的TestInner实体类,拓展性很好@Datapublic class TestResult<T> { private String type; private T data;}使用:TypeReference//使用TypeReference指定TestResult对应的内部泛型TestInne...转载 2019-08-19 17:07:34 · 1497 阅读 · 0 评论