上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页
public static void main(String[] args) { List<List<Integer>> list = m1(new int[]{1, 2, 3}); System.out.println(""); } public static List<List<Integer> Read More
posted @ 2020-08-08 11:18 soft.push("zzq") Views(230) Comments(0) Diggs(0) Edit
public class Node { //定义Node节点 static class ListNode { public int val; public ListNode next = null; public ListNode(int val) { this.val = val; } } pub Read More
posted @ 2020-08-08 11:06 soft.push("zzq") Views(144) Comments(0) Diggs(0) Edit
export maxParameterCount="1000"export acceptCount="1000"export maxSpareThreads="750"export maxThreads="1000"export minSpareTHreads="50"export URIEncod Read More
posted @ 2020-08-07 13:44 soft.push("zzq") Views(112) Comments(0) Diggs(0) Edit
多数据源配置 创建一个Spring配置类,定义两个DataSource用来读取application.properties中的不同配置。如下例子中,主数据源配置为spring.datasource.primary开头的配置,第二数据源配置为spring.datasource.secondary开头的 Read More
posted @ 2020-08-01 16:12 soft.push("zzq") Views(200) Comments(0) Diggs(0) Edit
什么是云计算 在探讨什么是aPaaS之前,我们有必要讲解一下云计算的概念。想象一下,假设你要开发一款软件程序,会需要用到哪些技术或设施呢?不懂技术没关系,您只要记得,一套软件通常包含以下九个层次:应用(application)数据(data)运行库(runtime)中间件(middleware)操作 Read More
posted @ 2020-07-25 16:12 soft.push("zzq") Views(137) Comments(0) Diggs(0) Edit
PUT /jzt_study_content { "mappings": { "content":{ "properties":{ "id":{ "type":"keyword" }, "title":{ "type":"text", "analyzer":"ik_max_word" }, "sor Read More
posted @ 2020-07-24 14:22 soft.push("zzq") Views(121) Comments(0) Diggs(0) Edit
ES查询策略的选择优化: 问题:ES6.8 使用TermQuery查询数值类型字段变慢,改为RangeQuery却变得飞快? profile显示耗时都在build_scorer中。 解释真相:在5.x以前,Lucene版本中无数值类型,本质都是底层转换为字符串,使用倒排索引的方式进行数据查询。这样的 Read More
posted @ 2020-07-24 14:07 soft.push("zzq") Views(687) Comments(0) Diggs(0) Edit
spring boot中jar包方式运行主要依赖于,打包后在jar归档文件根目录的org.springfreamwork.boot.loader.JarLauncher类中执行main方法。 JarLauncher是其中的一个启动引导类,除此以外还有warLauncher,但我们不做过多探讨; 说说 Read More
posted @ 2020-06-30 21:57 soft.push("zzq") Views(317) Comments(0) Diggs(0) Edit
说到spring自动装配的bean大伙都比较了解,@Autowired不就完了么。哈哈,今天我在review的时候发现了这个问题,小伙伴看下代码: @Bean public List<PlatformCheck> platformCheckList() { Map<String, PlatformC Read More
posted @ 2020-06-23 16:59 soft.push("zzq") Views(150) Comments(0) Diggs(0) Edit
posted @ 2020-06-20 11:23 soft.push("zzq") Views(93) Comments(0) Diggs(0) Edit
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 33 下一页