摘要:
一、在Spring配置文件中的配置 <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName"> <value>java:comp/env/jndi/m 阅读全文
摘要:
<Context path=”Welcome” docBase=”c:\hello\hello” reloadable=”true” /> <Context path=”Welcome” docBase=”c:\hello\hello” reloadable=”true” /> contex指上下文 阅读全文
摘要:
RPC(Remote Procedure Call Protocol) 所谓的远程过程调用 (面向方法) RPC使用C/S方式,采用http协议,发送请求到服务器,等待服务器返回结果。这个请求包括一个参数集和一个文本集,通常形成“classname.methodname”形式。优点是跨语言跨平台,C 阅读全文
摘要:
1、RPC与RMI (1)RPC 跨语言,而 RMI只支持Java。 (2)RMI 调用远程对象方法,允许方法返回 Java 对象以及基本数据类型,而RPC 不支持对象的概念,传送到 RPC 服务的消息由外部数据表示 (External Data Representation, XDR) 语言表示, 阅读全文
摘要:
http://www.cnblogs.com/rhythmK/p/4321718.html 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8" ?> <taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sche 阅读全文
摘要:
http://www.cnblogs.com/xdp-gacl/p/3916734.html 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8" ?> <taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sche 阅读全文
摘要:
阅读全文
摘要:
流向: 输入流:从硬盘到java 程序 (读数据) 输出流:从java 到硬盘 (写数据) 数据类型: 字节流: {用记事本打开,不能读懂,用 字节流} 输入: InputStream 输出: OutputStream 字符流: 为了方便操作文本数据,java提供了字符流。 {普通中文用字符流} 输 阅读全文