摘要: LT项目使用的EIP是运行在JETTY上,此文供开发和实施参考 1、windows下 win下部署多个jetty8很简单,首先将jetty8复制多个文件夹,其次按分配的端口号修改[JETTY_HOME]/etc/jetty.xml和jetty-proxy.xml。如该文件夹下的jetty分配8888端口 jetty.xml 3000 4 false 8443 20000 ... 阅读全文
posted @ 2013-09-30 09:19 tree.liang 阅读(1511) 评论(0) 推荐(0) 编辑
摘要: 都是调用一个HTTP接口java的确是甄环体import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.net.HttpURLConnection;import java.net.MalformedURLException;import java.net.URL;public class NetClientGet { public static void main(String[] args) { try { ... 阅读全文
posted @ 2013-09-27 15:59 tree.liang 阅读(576) 评论(2) 推荐(0) 编辑
摘要: 前段时间为K3CLOUD项目安装ORACLE服务器,因有同事对LINUX和ORACLE不熟,现整理文档,方便后面维护人员参考ORACLE的安装1、首先安装依赖包(新安装的centos需要,现服务器已不需要)2、关闭防火墙或设置开放ORACLE对应端口,配置文件如下/etc/sysconfig/iptables防火墙可视化界面如下3、/etc/hosts和/etc/sysconfig/network该2个文件中的主机名必须保证一致4、修改/etc/redhat-release.conf,标识为red hat5、 修改/etc/sysctl.conf,然后执行sysctl-p生效变更6、创建ORA 阅读全文
posted @ 2013-09-27 09:16 tree.liang 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.codecentric.de/en/2012/03/transactions-in-spring-batch-part-3-skip-and-retry/This is the third post in a series about transactions in Spring Batch, you find the first onehere, it’s about the basics, and the second onehere, it’s about restart, cursor based reading and listeners.Today’ 阅读全文
posted @ 2013-09-26 09:45 tree.liang 阅读(2255) 评论(0) 推荐(0) 编辑
摘要: 原文 https://blog.codecentric.de/en/2012/03/transactions-in-spring-batch-part-2-restart-cursor-based-reading-and-listeners/This is the second post in a series about transactions in Spring Batch, you find the first onehere, it’s about chunk based transaction handling, batch job vs. business data, a fai 阅读全文
posted @ 2013-09-26 09:41 tree.liang 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 原文https://blog.codecentric.de/en/2012/03/transactions-in-spring-batch-part-1-the-basics/This is the first post in a series about transactions in Spring Batch, you find the second onehere, it’s about restarting a batch, cursor based reading and listeners, and the third onehere, it’s about skip and re 阅读全文
posted @ 2013-09-26 09:39 tree.liang 阅读(1567) 评论(0) 推荐(0) 编辑
摘要: 原文 http://www.smooks.org/mediawiki/index.php?title=V1.5:Smooks_v1.5_User_GuideIntroductionSmooks is an extensible framework for building applications for processing XML and non XML data (CSV, EDI, Java etc) using Java.While Smooks can be used as a lightweight platform on which to build your own cust 阅读全文
posted @ 2013-09-26 09:27 tree.liang 阅读(2988) 评论(0) 推荐(0) 编辑
摘要: PrefaceThe ProblemNowadays we use general purpose applications or libraries to communicate with each other. For example, we often use an HTTP client library to retrieve information from a web server and to invoke a remote procedure call via web services.However, a general purpose protocol or its imp 阅读全文
posted @ 2013-09-26 09:05 tree.liang 阅读(771) 评论(0) 推荐(0) 编辑