摘要: https://blog.csdn.net/kxj19980524/article/details/87860876 阅读全文
posted @ 2020-06-27 22:28 learning豪 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Could not autowire. No beans of 'RestTemplate' type found. more... 一.问题描述: 今天在springboot项目中构建配置类时报错 二.问题分析: 经网上查询得知, idea的纠错机制在解析spring通过命名约定的方式进行配置时, 阅读全文
posted @ 2020-06-26 19:21 learning豪 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 父工程pom.xml文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins 阅读全文
posted @ 2020-06-26 00:21 learning豪 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 在连接数据库配置都没错,jar包也有,但是还是报 Could not create connection to database server.错误,那是因为mysql8.0版本的使用的数据库连接字符串不一样,而且还对时区有要求,引用下面的连接即可 url: jdbc:mysql://localho 阅读全文
posted @ 2020-06-25 22:50 learning豪 阅读(1280) 评论(0) 推荐(1) 编辑
摘要: Ajax AjAX=Asynchronous javaScript and XML(异步的javaScript和XML)。 Ajax不是一种新的编程语言,而是一种用于创建更好更快以及交互性更强的Web应用程序的技术 C/S 增加B/S的体验性 B/S:未来的主流,并且会爆发式的持续增长; H5+网页 阅读全文
posted @ 2020-06-24 23:32 learning豪 阅读(1251) 评论(0) 推荐(1) 编辑
摘要: 作者:no.body 链接:https://www.zhihu.com/question/19801131/answer/27459821 来源:知乎 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 什么是回调函数? 我们绕点远路来回答这个问题。 编程分为两类:系统编程(sys 阅读全文
posted @ 2020-06-24 22:26 learning豪 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 博客园快捷发布工具 一.准备环境 安装.NET Core SDK: https://www.microsoft.com/net/learn/get-started/windows .NET Core SDK 2.1:点我下载 运行本程序必须需要.NET Core 2.1或者更高版本 二.第一种安装方 阅读全文
posted @ 2020-06-21 00:54 learning豪 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 在使用react时按需引入antd时,报了下面这个错: ValidationError: Invalid options object. Less Loader has been initialized using an options object that does not match the 阅读全文
posted @ 2020-06-11 22:24 learning豪 阅读(722) 评论(0) 推荐(0) 编辑
摘要: ALTER USER 'root'@'localhost' IDENTIFIED BY '123456'; 修改 root 密码 阅读全文
posted @ 2020-06-11 19:22 learning豪 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 简介 2.第一个Mybatis程序 搭建数据库 create database `mybatis`; use `mybatis`; create table `user`( `id` INT(20) NOT NULL PRIMARY KEY, `name` VARCHAR(30) DEFAULT N 阅读全文
posted @ 2020-05-30 22:51 learning豪 阅读(66) 评论(0) 推荐(0) 编辑