06 2019 档案

摘要:CREATE TABLE `abc` ( `id` int(11) DEFAULT NULL, `veh_code` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ... 阅读全文
posted @ 2019-06-28 17:06 缘来是妳啊 阅读(24) 评论(0) 推荐(0)
摘要:文章来自:https://www.cnblogs.com/chuanzhang053/p/9269737.html 阅读全文
posted @ 2019-06-27 14:32 缘来是妳啊 阅读(70) 评论(0) 推荐(0)
摘要:1.线程池的构造方法 ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue wor... 阅读全文
posted @ 2019-06-21 16:53 缘来是妳啊 阅读(38) 评论(0) 推荐(0)
摘要:/* 与 的区别, * T 代表一个给定的接口 * */import java.util.*;interface A1{}interface A2{}interface A3{}interface A4{}interface B1 extends A1... 阅读全文
posted @ 2019-06-21 14:28 缘来是妳啊 阅读(85) 评论(0) 推荐(0)
摘要:package com.mrm.test.action;import java.util.Random;import java.util.concurrent.*;public class test { public static void main(S... 阅读全文
posted @ 2019-06-18 15:52 缘来是妳啊 阅读(28) 评论(0) 推荐(0)
摘要:@Componentpublic class SpringContextUtil implements BeanFactoryAware { private static BeanFactory beanFactory; private final... 阅读全文
posted @ 2019-06-18 10:25 缘来是妳啊 阅读(57) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-06-11 21:08 缘来是妳啊 阅读(18) 评论(0) 推荐(0)
摘要:java.util.concurrent.Exchanger应用范例与原理浅析--转载 一、简介 Exchanger是自jdk1.5起开始提供的工具套件,一般用于两个工作线程之间交换数据。在本文中我将采取由浅入深的方式来介绍分析这个工具类。首先我们来看看... 阅读全文
posted @ 2019-06-11 20:18 缘来是妳啊 阅读(34) 评论(0) 推荐(0)