08 2018 档案

摘要:登录mysql数据库出现 : ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO cmd操作出现如上提示信息,root用户登录正常,但是 新建授权用户登录提示错误,多次修改密码后都登录无效 阅读全文
posted @ 2018-08-20 15:52 疯狂生长 阅读(280) 评论(0) 推荐(0)
摘要:Spring 常用注解 SpringBoot 配置端口 Spring properties属性注入 阅读全文
posted @ 2018-08-20 10:13 疯狂生长 阅读(95) 评论(0) 推荐(0)
摘要:问题参考: 1、安装mysql Install/Remove of the Service Denied!错误的解决办法 https://blog.csdn.net/lxpbs8851/article/details/14161935 2、net start mysql ,该命令,必须在 C:\Wi 阅读全文
posted @ 2018-08-17 09:43 疯狂生长 阅读(164) 评论(0) 推荐(0)
摘要:MAVEN 打包 进入工程目录 打成jar包 将工程打包成独立运行jar包 进入cmd 定位到项目目录下然后执行 mvn clean package –DskipTests java -jar xxxxx.jar 即可启动Spring Boot 项目 阅读全文
posted @ 2018-08-16 15:56 疯狂生长 阅读(217) 评论(0) 推荐(0)
摘要:mysql 判定某一字段是否为null(不是空串) select * from 表名 where id is not null; select * from 表名 where id is null ; split 分割 字符串(分隔符如:* ^ : | , .) 及注意点 在进行字符串分割时特殊字符 阅读全文
posted @ 2018-08-10 20:37 疯狂生长 阅读(98) 评论(0) 推荐(0)