自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (1)
  • 收藏
  • 关注

原创 mysql连接报错HikariPool-1 - Exception during pool initialization.

场景:在学习spring boot中mybatis连接数据库MySQL时,最新版数据库的驱动为driver-class-name: com.mysql.cj.jdbc.Driver可是修改完这里后数据库依旧无法连接,异常信息为:HikariPool-1 - Exception during pool initialization.原因:数据库没有设置时区或时区设置不对解决方法...

2020-04-29 15:27:17 1134

转载 spring boot 启动的时候required a bean of type 'XXX' not be

https://www.jianshu.com/p/cd886bde3170

2020-04-29 09:47:41 460 1

原创 springboot异常Annotation-specified bean name.. for bean class ...

异常:springframework.beans.factory.BeanDefinitionStoreException: Failed toparse configuration class [com.itcodai.course01.Course01Application];nested exception isorg.springframework.context.annotat...

2020-04-27 10:09:32 5602

原创 swagger2 生成api接口文档

swagger2的配置package com.itcodai.course01.Swagger2Test;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import springfox.documentation....

2020-04-27 09:58:10 591

原创 java堆栈的模拟案例

栈的特点:先进后出!/** * 自己设计的栈堆 * 使用java模拟栈堆出栈和入栈的过程 */public class StackModel { private int[] stackModel = new int[5]; private int hand = -1; public StackModel() { } public void pu...

2020-04-25 13:08:14 298

原创 选择排序---Java实现

选择排序将要排序的元素a与数组中的每一个元素做比较,若有元素比a小,则该元素与a交换位置。如此重复当遍历一次数组后就能保证a是所有元素中最小的。public class mySelectionSort { public static void selectionSort(int[] list) { for (int i = 0; i < list.length; ...

2020-04-24 21:20:24 73

原创 java 二分查找

Java二分查找原理就不介绍了,大家都懂。说一下二分查找的前提数组中的元素必须已经拍好顺序自己写的代码:public static int binarySearch(double[] nubmers, int number) { int low = 0, hight = nubmers.length - 1, mid; while (hight >= low) ...

2020-04-24 17:15:19 112

原创 java 实例学习:统计每个字母出现的次数

复习Java程序设计时看到书上的案例,当时学生时期没看懂。现在回过头突然明白了,记录学习一下其中和兴的方法。public static int[] countLetters(char[] chars){ int[] counts = new int[26]; for (int i = 0; i < char.length; i++) counts[chars[i] - 'a']...

2020-04-24 14:21:58 2052

原创 java基础补习

java可边长参数列表具有同样类型的可变长度的参数可以传递给方法。并将之以数组对待。方法中的参数声明如下:typeName…   parameterName(类型名…   参数名)注意事项: 指定类型后紧跟省略号…只能给方法中指定一个可变长参数,同时该参数必须放在所有参数后面。...

2020-04-24 13:59:20 116

json所用到的jar包

json开发所需要的jar包,fastjson-1.2.2.jar,fastjson-1.2.2-sources.jar,json.jar。不用到处找了

2017-11-17

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除