上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页
摘要: 1 2 阅读全文
posted @ 2020-10-21 17:10 alittlecomputer 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1、下载安装包 打开链接https://github.com/microsoftarchive/redis/releases https://github.com/MicrosoftArchive/redis/releases 下载Redis-x64-3.2.100.zip 双击下载好的msi格式的 阅读全文
posted @ 2020-10-17 20:46 alittlecomputer 阅读(204) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_27384769/article/details/82991261 阅读全文
posted @ 2020-10-16 20:24 alittlecomputer 阅读(48) 评论(0) 推荐(0) 编辑
摘要: https://github.com/chxfantasy/spring-cloud-demo https://www.jianshu.com/p/c14c47243994 阅读全文
posted @ 2020-10-16 20:22 alittlecomputer 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 我们来看一个简单的线程池。 首先创建一个Runnable接口的实现类(当然也可以是Callable接口,我们上面也说过两者的区别) package com.study; import java.util.Date; public class MyRunnable implements Runnabl 阅读全文
posted @ 2020-10-13 19:15 alittlecomputer 阅读(119) 评论(0) 推荐(0) 编辑
摘要: https://www.jq22.com/yanshi22050 阅读全文
posted @ 2020-10-09 20:25 alittlecomputer 阅读(55) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010963948/article/details/90080056 阅读全文
posted @ 2020-09-27 16:05 alittlecomputer 阅读(102) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/yy3b2007com/p/11033009.html 阅读全文
posted @ 2020-09-24 21:29 alittlecomputer 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 弹幕 import java.util.*; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = Integer.parseInt( 阅读全文
posted @ 2020-09-23 22:07 alittlecomputer 阅读(115) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u011500062/article/details/72855826 import java.util.ArrayList; public class Solution { public static void main(String[] args) { 阅读全文
posted @ 2020-09-23 20:35 alittlecomputer 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 内容摘自https://juejin.im/post/6844903951502934030 Redis支持5种数据类型:string(字符串),hash(哈希),list(列表),set(集合),及zset(有序集合) 首先Redis内部使用一个redisObject对象来表示所有的key和val 阅读全文
posted @ 2020-09-22 22:09 alittlecomputer 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一、Java集合类 Java集合类是Java编程中使用最频繁的、最方便的类。集合类作为容器类可以存储任何类型的数据,当然也可以结合泛型存储指定的类型(不过泛型仅仅在编译期有效,运行时是会被擦除的)。集合类中存储的仅仅是对象的引用,并不存储对象本身。集合类的容量可以在运行期间进行动态扩展,并且还提供很 阅读全文
posted @ 2020-09-12 19:37 alittlecomputer 阅读(199) 评论(0) 推荐(0) 编辑
摘要: JDBC介绍 JDBC(Java DataBase Connectivity)是Java和数据库之间的一个桥梁,是一个规范而不是一个实现,能够执行SQL语句。它由一组用Java语言编写的类和接口组成。各种类型的的数据库都有相应的实现,本文中的代码都是针对MySQL数据库实现的。 JDBC编程步骤 1 阅读全文
posted @ 2020-09-05 14:29 alittlecomputer 阅读(264) 评论(0) 推荐(0) 编辑
摘要: @Test public void addUser2(){ SqlSession sqlSession = MybatisUtils.getSqlSession(); UserDao mapper = sqlSession.getMapper(UserDao.class); HashMap<Stri 阅读全文
posted @ 2020-09-04 21:48 alittlecomputer 阅读(140) 评论(0) 推荐(0) 编辑
摘要: #下载 官网 下载最新的版本,我下载的是3.6.1的版本。 下载下来的文件是apache-zookeeper-3.6.1-bin.tar.gz 解压出来是这样的包括文件夹: bin conf docs lib 文件: LICENSE NOTICE README.md README_packaging 阅读全文
posted @ 2020-09-01 09:41 alittlecomputer 阅读(164) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 34 下一页