随笔分类 -  Java基础

Java基础
java 与大数据学习较好的网站
摘要:C# C#中 Thread,Task,Async/Await,IAsyncResult 的那些事儿!https://www.cnblogs.com/doforfuture/p/6293926.htmlAsp.net缓存技术(HttpRuntime.Cache)https://www.cnblogs. 阅读全文

posted @ 2018-05-07 17:23 chengjunde 阅读(1469) 评论(0) 推荐(0)

java类敏感词过滤类
摘要:package com.fpx.pcs.prealert.process.service.impl; import java.util.HashMap;import java.util.HashSet;import java.util.Iterator;import java.util.Map;im 阅读全文

posted @ 2018-05-07 17:13 chengjunde 阅读(167) 评论(0) 推荐(0)

Spring boot 与mybatis 多数据源问题
摘要:https://www.cnblogs.com/ityouknow/p/6102399.html Spring Boot 集成Mybatis实现多数据源 https://blog.csdn.net/maoyeqiu/article/details/74011626 Spring Boot + Myb 阅读全文

posted @ 2018-05-07 15:19 chengjunde 阅读(108) 评论(0) 推荐(0)

Spring Boot集成Redis实现缓存机制【从零开始学Spring Boot】
摘要:转自:https://blog.csdn.net/linxingliang/article/details/52263763 spring boot 自学笔记(三) Redis集成—RedisTemplate 转自:https://blog.csdn.net/i_vic/article/detail 阅读全文

posted @ 2018-05-07 15:11 chengjunde 阅读(123) 评论(0) 推荐(0)

JVM 小结
摘要:JVM运行原理详解 https://blog.csdn.net/luomingkui1109/article/details/72820232 jvm 堆栈方法区数据存放和操作流程 https://blog.csdn.net/u014332037/article/details/53836054 j 阅读全文

posted @ 2018-05-04 18:31 chengjunde 阅读(128) 评论(0) 推荐(0)

java 对类型的基本操作小结
摘要:1.json 字符串转换成对象 SyncCarriageStatusDTO dto= JSON.parseObject(value,SyncCarriageStatusDTO.class); List<MQPackageParams> pparams = JSON.parseObject(dto.g 阅读全文

posted @ 2018-04-28 17:48 chengjunde 阅读(184) 评论(0) 推荐(0)

java 多继承的典型应用实例(不同的报文不同的方法去解析)
摘要:关于 java 多继承的典型应用实例 针对不同业务类型的XML文件的解析 在PCS 项目: public class CainiaoXMLMessageResolverServiceImpl implements CainiaoXMLMessageResolverService,Initializi 阅读全文

posted @ 2018-04-27 18:39 chengjunde 阅读(385) 评论(0) 推荐(0)

spring cloud 基本小结
摘要:Spring cloud系列十四 分布式链路监控Spring Cloud Sleuth https://blog.csdn.net/hry2015/article/details/78905489 Spring Cloud Stream(消息驱动) https://blog.csdn.net/jac 阅读全文

posted @ 2018-04-27 00:18 chengjunde 阅读(156) 评论(0) 推荐(0)

Python中的X[:,0]和X[:,1]
摘要:https://blog.csdn.net/csj664103736/article/details/72828584 python中 x=x[1:] 是什么意思 Python join() http://www.runoob.com/python/att-string-join.html 描述 P 阅读全文

posted @ 2018-04-25 00:25 chengjunde 阅读(23264) 评论(0) 推荐(0)

SSO 证书配置
摘要:ssodev.crt为开发环境证书ssotest.crt为测试环境证书 将证书拷贝到目录:{JDK}\jre\lib\security 其中 {JDK} 是实际安装JDK的位置。然后cmd进入命令窗口,进入该目录执行命令:keytool -import -trustcacerts -alias ss 阅读全文

posted @ 2018-04-11 13:44 chengjunde 阅读(278) 评论(0) 推荐(0)

MQ 个人小结
摘要:在PCS项目: talking 发送队列1.1 创建@Beanpublic Queue orderTakingQueue() { return createQueue(orderTakingQueueName); } 1.2 绑定 @Bean public Binding orderTakingQu 阅读全文

posted @ 2018-04-11 13:43 chengjunde 阅读(122) 评论(0) 推荐(0)

java 判断对象的所有属性是否为空解决方案
摘要:public static boolean allfieldIsNUll(Object o){ try{ for(Field field:o.getClass().getDeclaredFields()){ field.setAccessible(true);//把私有属性公有化 Object ob 阅读全文

posted @ 2018-03-30 13:44 chengjunde 阅读(1868) 评论(0) 推荐(0)

怎么添加项目到SVN上面
摘要:一、通过SVN客户端向服务器上面添加项目 1、在服务器上面创建一个文件夹,文件夹以项目名称命名。 2、在合适目录下右击后,点击SVN Checkout,将你在服务器上面创建的目录checkout下来,然后将你在本地项目下的文件或目 录导入到此目录中,然后选中要提交的文件或目录,右击,选择“Add”, 阅读全文

posted @ 2018-02-27 14:28 chengjunde 阅读(364) 评论(0) 推荐(0)

Spring 静态注入讲解(MethodInvokingFactoryBean)
摘要:/* * Copyright (c) 2017 4PX Information Technology Co.,Ltd. All rights reserved. */package com.fpx.order.csm.config; import java.util.Arrays;import ja 阅读全文

posted @ 2017-12-27 15:57 chengjunde 阅读(735) 评论(0) 推荐(0)

Https系列之三:让服务器同时支持http、https,基于spring boot
摘要:转自:http://www.cnblogs.com/garyyan/p/7600322.html Https系列会在下面几篇文章中分别作介绍: 一:https的简单介绍及SSL证书的生成二:https的SSL证书在服务器端的部署,基于tomcat,spring boot三:让服务器同时支持http、 阅读全文

posted @ 2017-09-27 13:44 chengjunde 阅读(187) 评论(0) 推荐(0)

java 基础
摘要:1.(首推)双击选中该方法,Ctrl+Alt+H 如果你想知道一个类的方法到底被那些其他的类调用,那么请选中这个方法名,然后按“Ctrl+Alt+H”, Eclipse就会显示出这个方法被哪些方法调用,最终产生一个调用关系树。 2.(次推)选中该方法,Ctrl+Shift+G 就显示这个方法被谁引用 阅读全文

posted @ 2017-06-27 18:36 chengjunde 阅读(127) 评论(0) 推荐(0)

WEB项目web.xml文件中classpath: 跟classpath*:使用的区别
摘要:http://www.cnblogs.com/Ant-soldier/p/5474085.html http://blog.csdn.net/zl3450341/article/details/9306983 阅读全文

posted @ 2017-06-22 09:13 chengjunde 阅读(89) 评论(0) 推荐(0)

spring boot 基础学习
摘要:构建微服务:Spring boot 入门篇 http://www.cnblogs.com/ityouknow/p/5662753.html SpringBoot入门系列:第一篇 Hello World http://blog.csdn.net/lxhjh/article/details/517111 阅读全文

posted @ 2017-06-18 17:37 chengjunde 阅读(127) 评论(0) 推荐(0)

java中注解的使用与实例(一)
摘要:http://www.cnblogs.com/pepcod/archive/2013/02/16/2913474.html 注解目前非常的流行,很多主流框架都支持注解,而且自己编写代码的时候也会尽量的去用注解,一时方便,而是代码更加简洁。 注解的语法比较简单,除了@符号的使用之外,它基本与Java固 阅读全文

posted @ 2017-06-18 17:32 chengjunde 阅读(223) 评论(0) 推荐(0)

java 集合排序
摘要:http://www.cnblogs.com/standcloud/articles/2601914.html java 集合排序 Java API针对集合类型排序提供了两种支持:java.util.Collections.sort(java.util.List)java.util.Collecti 阅读全文

posted @ 2017-01-20 11:14 chengjunde 阅读(186) 评论(0) 推荐(0)

导航