2018年7月10日

解决mysql 8 安装后命令行可以连接,navicat不能连接的问题

摘要: 错误代码: client does not support authentication 解决办法: 1 使用命令行进入数据库 2 选着数据库 mysql --> user mysql 3 alter user 'root'@'localhost' identified with mysql_nat 阅读全文

posted @ 2018-07-10 22:16 zhangyukun 阅读(2829) 评论(0) 推荐(0) 编辑

spring4 知识点

摘要: 1 bean的 创建 1,直接在配置文件里面写一个带有@Bean注解的方法(返回值就是那个bean对象),(name等于 方法名) @Bean还可以写在枚举上面 2,使用 FactoryBean 接口(三个方法分别是创建,类型,单例),需要把它加入到spring 容器管理,@Component 或者 阅读全文

posted @ 2018-07-10 20:29 zhangyukun 阅读(133) 评论(0) 推荐(0) 编辑

springboot 知识点

摘要: 恢复内容开始 1springBoot项目引入方式, 1,继承自父 project (需要没有付项目才能用,一般我们的项目都会有 父 项目 所以 这种方式不推荐 ,记住有这种方式 就可以了) <parent> <groupId>org.springframework.boot</groupId> <a 阅读全文

posted @ 2018-07-10 20:28 zhangyukun 阅读(283) 评论(0) 推荐(0) 编辑

maven 指定 jdk 版本

摘要: maven 配置 jdk 版本 阅读全文

posted @ 2018-07-10 20:09 zhangyukun 阅读(287) 评论(0) 推荐(0) 编辑

导航