- 博客(5)
- 资源 (1)
- 收藏
- 关注
原创 {@org.springframework.beans.factory.annotation.Autowired(required=true)}
org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘houseInfoController’: Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field:
2020-08-07 01:22:32 201
原创 java字符串根据逗号(,)将一个字符串拆成一个String数组
String str=",1,2,3,4,5,6,7,7, , , , , ,"String[] chars=str.split(",");for(int i=0;i<chars.length;i++){ if(chars[i]==""||chars[i]==null||chars[i]=="null"){ System.out.println("ok"); }else{ System.out.println(chars[i]);
2020-07-17 02:35:15 759
原创 java数组二分查找要找的数的下标(包含冒泡排序)
public static void main(String[] args) {int[] bubbling={1,3,2,4,6,5};//冒泡排序for(int i=0;i<bubbling.length;i++){for(int j=0;j<=i;j++){if(bubbling[i]<bubbling[j]){int t=bubbling[i];bubbling[i]=bubbling[j];bubbling[j]=t;}}}//排序后的结果(从小到大)f
2020-07-17 02:15:25 289
翻译 Linux系统CentOS镜像文件下载地址(如:CentOS-6.5-x86_64-bin-DVD1.iso)
https://archive.kernel.org/centos-vault/6.5/isos/x86_64/
2020-05-03 09:02:25 4672
mysql-5.5.61-winx64.rar
2020-07-17
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人