Spring Cloud Contract 实践

由于工作需要,第一次接触 Spring Cloud Contract 这个组件。中文翻译为 契约 ,它是一个用于微服务测试组件。在正常的微服务开发过程中,我们要进行测试时,通常情况下要启动全部的微服务项目,这个组件可以使我们在不启动其他微服务时完成测试。

阅读全文 »

所谓动态代理,即通过代理类:Proxy的代理,接口和实现类之间可以不直接发生联系,而可以在运行期(Runtime)实现动态关联。

java动态代理主要是使用 java.lang.reflect 包中的两个类。

阅读全文 »

Add this to your <head> section:

1
2
3
4
5
<script>
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>

And change your iframe to this:

1
<iframe src="..." frameborder="0" scrolling="no" onload="resizeIframe(this)" />

As found on sitepoint discussion.

Java内省机制

内省( Introspector ) 是 Java 语言对 JavaBean 类属性、事件的一种缺省处理方法。

阅读全文 »

工作中发现的一个小问题简单记录一下,在 NOT IN 与 IN 中传入 NULL 值对于系统的不同影响。

To state it simply, why does query A return a result but B doesn’t?

阅读全文 »
0%