自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(21)
  • 收藏
  • 关注

转载 Microservices Reference Architecture - with Spring Boot, Spring Cloud and Netflix OSS--转

原文地址:https://www.linkedin.com/pulse/microservices-reference-architecture-spring-boot-cloud-anil-allewarWhat is "Microservices"?Microservices is the "new kid" on the block; a new paradigm that...

2016-05-31 08:23:00 134

转载 spring aop源码实现分析

1. 先分析Advicebefore执行Cglib2AopProxy的intercept方法:/** * General purpose AOP callback. Used when the target is dynamic or when the * proxy is not frozen. */ private stati...

2016-05-30 10:19:00 177

转载 摘录1

People will forget what you did.People will forget what you said.But they will not forget what you made them feel.转载于:https://www.cnblogs.com/davidwang456/p/5534861.html

2016-05-27 15:45:00 48

转载 基于@AspectJ配置Spring AOP之一--转

原文地址:http://tech.it168.com/j/2007-08-30/200708302209432.shtml概述 在低版本Spring中定义一个切面是比较麻烦的,需要实现特定的接口,并进行一些较为复杂的配置,低版本Spring AOP的配置是被批评最多的地方。Spring听取这方面的批评声音,并下决心彻底改变这一现状。在Spring2.0中,Spring AOP...

2016-05-27 10:20:00 69

转载 Advice for students of machine learning--转

原文地址:http://www.mimno.org/articles/ml-learn/written bydavid mimnoOne of my students recently asked me for advice on learningML. Here’s what I wrote. It’s biased toward my own experi...

2016-05-20 10:58:00 57

转载 Kubernetes系统架构简介--转

原文地址:http://www.infoq.com/cn/articles/Kubernetes-system-architecture-introduction?utm_campaign=infoq_content&utm_source=infoq&utm_medium=feed&utm_term=global1. 前言Together we wil...

2016-05-20 09:04:00 612

转载 spring remoting源码分析--Hessian分析

1. Caucho1.1 概况spring-remoting代码的情况如下:本节近分析caucho模块。1.2 分类其中以hession为例,Hessian远程服务调用过程:                          Hessian远程服务调用过程1.2.1 客户端BurlapProxyFactoryBean,BurlapClient...

2016-05-18 10:58:00 122

转载 好技术领导和差技术领导区别在哪里--转

原文地址:http://suanfazu.com/t/topic/9613Foursquare团队技术领导简要指南——有感于Ben Horowitz“好产品经理,差产品经理”一文。团队合作一个优秀的技术领导必然是团队的一份子,他们认为当整个团队成功时自己才称得上成功。他们不仅要做好繁杂和不讨好的本职工作,还要清除项目中的障碍,从而让整个团队能够以 100% 的效率运转起来...

2016-05-17 08:34:00 61

转载 Hessian 原理分析--转

原文地址:http://blog.csdn.net/zhtang0526/article/details/4788879一.远程通讯协议的基本原理网络通信需要做的就是将流从一台计算机传输到另外一台计算机,基于传输协议和网络IO来实现,其中传输协议比较出名的有http、tcp、udp等等,http、tcp、udp都是在基于Socket概念...

2016-05-13 09:41:00 84

转载 用实例讲解Spark Sreaming--转

原文地址:http://www.infoq.com/cn/articles/spark-sreaming-practice本篇文章用Spark Streaming +Hbase为列,Spark Streaming专为流式数据处理,对Spark核心API进行了相应的扩展。什么是Spark Streaming?首先,什么是流式处理呢?数据流是一个数据持续不断到达的无边界序列集。流...

2016-05-13 09:12:00 70

转载 Quartz Java resuming a job excecutes it many times--转

原文地址:http://stackoverflow.com/questions/1933676/quartz-java-resuming-a-job-excecutes-it-many-timesQuestion:For my application i create jobs and schedule them with CronTriggers. Each job has o...

2016-05-11 17:58:00 81

转载 Spring Remoting: Remote Method Invocation (RMI)--转

原文地址:http://www.studytrails.com/frameworks/spring/spring-remoting-rmi.jspConcept OverviewSpring provides four ways to develop remote services. Remote services are services hosted on remote se...

2016-05-11 13:00:00 135

转载 Spring Remoting: HTTP Invoker--转

原文地址:http://www.studytrails.com/frameworks/spring/spring-remoting-http-invoker.jspConcept OverviewIn the earlier articles we saw an introduction to spring remoting and its support forRMI,He...

2016-05-11 09:47:00 102

转载 Spring Remoting: Burlap--转

原文地址:http://www.studytrails.com/frameworks/spring/spring-remoting-burlap.jspConcept OverviewIn the earlier tutorials we saw an introduction to Spring remoting and its support forRMIandHess...

2016-05-11 09:44:00 72

转载 Spring Remoting: Hessian--转

原文地址:http://www.studytrails.com/frameworks/spring/spring-remoting-hessian.jspConcept OverviewTheprevioustutorial presents an overview of spring remoting and lists down various remoting prot...

2016-05-11 09:41:00 77

转载 spring源码分析之spring-web remoting模块概况及基本概念

spring-web总体分为三部分:caucho、httpinvoker、jaxws,其总体构造图如下:uml结构:先看看网上搜索到的上述实现的原理吧:Spring RMI,Hessian/Burlap,HttpInvoker的区别http://blog.csdn.net/arkblue/article/details/62531121 Hessian/Bu...

2016-05-11 08:46:00 127

转载 eclispe使用外部tomcat总结

1. 配置tomcatServers-->new配置tomcat的路径,即可2. 增加/移除application注意:移除application时请使用"clean"来清除一下3. 配置概况4. modules模块注意:context/path 和tomcat server.xml中的是否一致?reload属性设置为false...

2016-05-10 16:31:00 60

转载 Watch out for these 10 common pitfalls of experienced Java developers & architects--转

原文地址:http://zeroturnaround.com/rebellabs/watch-out-for-these-10-common-pitfalls-of-experienced-java-developers-architects/Can we start by asking a serious question?How easy is it to find advic...

2016-05-10 08:55:00 164

转载 mysql Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT

使用mysql的时候,用到int类型的蛮多,需要注意一下:1. 值的范围TypeStorageMinimum ValueMaximum Value(Bytes)(Signed/Unsigned)(Signed/Unsigned)TINYINT1-1281270255SMALLINT2-327...

2016-05-09 17:04:00 93

转载 publishing failed with multiple errors

背景:1.使用maven package工程2. 在eclipse中添加server运行时publishing failed with multiple errors resource is out of sync with the file system问题所在:Eclipse produces this message when a file in an Ecli...

2016-05-06 13:45:00 191

转载 PowerMock 简介--转载

原文地址:https://www.ibm.com/developerworks/cn/java/j-lo-powermock/EasyMock 以及 Mockito 都因为可以极大地简化单元测试的书写过程而被许多人应用在自己的工作中,但是这 2 种 Mock 工具都不可以实现对静态函数、构造函数、私有函数、Final 函数以及系统函数的模拟,但是这些方法往往是我们在大型系统中需要的功...

2016-05-04 16:46:00 76

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除