<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Kay's Blog</title><subtitle type="text">有勇气改变你可以改变的，有胸怀接受你不可以改变的，有智慧分辨两者的不同！</subtitle><id>http://feed.cnblogs.com/blog/u/23006/rss</id><updated>2010-06-06T01:25:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/23006/rss"/><entry><id>http://www.cnblogs.com/kay/archive/2009/09/25/1573815.html</id><title type="text">Weblogic10.3客户端jar文件</title><summary type="text">在Weblogic10.3这个版本中并没有提供客户端jar文件供我们使用，所以我们需要自己去打包客户端jar文件，打包步骤如下： 1. 假设Weblogic安装在C盘的根目录下，在MS-DOS下将路径切换到C:\Oracle\Middleware\wlserver_10.3\server\lib目录下。 然后运行java –jar ..\..\..\modules\com.bea.core.j...</summary><published>2009-09-25T02:23:00Z</published><updated>2009-09-25T02:23:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/09/25/1573815.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/09/25/1573815.html"/><content type="text">在Weblogic10.3这个版本中并没有提供客户端jar文件供我们使用，所以我们需要自己去打包客户端jar文件，打包步骤如下： 1. 假设Weblogic安装在C盘的根目录下，在MS-DOS下将路径切换到C:\Oracle\Middleware\wlserver_10.3\server\lib目录下。 然后运行java –jar ..\..\..\modules\com.bea.core.j...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/09/19/1570268.html</id><title type="text">PHP5操作MySQL数据库</title><summary type="text">1. 建立数据库连接 &lt;?php $mysqli=newmysqli("localhost","root","","mydb"); ?&gt; 建立一个数据库连接需要四个参数，分别为数据库地址、数据库访问用户名、数据库访问密码、数据库名称。除了使用上面的mysqli对象的构造方法建立数据库连接外，还可以调用其connect方法建立数据库的连接。 &lt;?php $mysqli=newmys...</summary><published>2009-09-19T15:39:00Z</published><updated>2009-09-19T15:39:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/09/19/1570268.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/09/19/1570268.html"/><content type="text">1. 建立数据库连接 &lt;?php $mysqli=newmysqli("localhost","root","","mydb"); ?&gt; 建立一个数据库连接需要四个参数，分别为数据库地址、数据库访问用户名、数据库访问密码、数据库名称。除了使用上面的mysqli对象的构造方法建立数据库连接外，还可以调用其connect方法建立数据库的连接。 &lt;?php $mysqli=newmys...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/09/15/1566805.html</id><title type="text">Struts2拦截器</title><summary type="text">拦截器（interceptor）是Struts2最强大的特性之一，拦截器可以让你在Action和result被执行之前或之后进行一些处理。同时，拦截器也可以让你将通用的代码模块化并作为可重用的类。Struts2中的很多特性都是由拦截器来完成的。例如params拦截器将HTTP请求中的参数解析出来，并设置为Action的属性。servlet-config拦截器直接将HTTP请求中的HttpServl...</summary><published>2009-09-15T02:42:00Z</published><updated>2009-09-15T02:42:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/09/15/1566805.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/09/15/1566805.html"/><content type="text">拦截器（interceptor）是Struts2最强大的特性之一，拦截器可以让你在Action和result被执行之前或之后进行一些处理。同时，拦截器也可以让你将通用的代码模块化并作为可重用的类。Struts2中的很多特性都是由拦截器来完成的。例如params拦截器将HTTP请求中的参数解析出来，并设置为Action的属性。servlet-config拦截器直接将HTTP请求中的HttpServl...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/09/13/1566034.html</id><title type="text">使用AppServ快速建立php运行环境</title><summary type="text">  对于像我一样的初学php的人来说，php的运行环境的搭建一定是一个难关。那么我们使用AppServ这样一个集成环境来帮助我们快速搭建php的运行环境。AppSer中包含了Apache服...</summary><published>2009-09-13T07:44:00Z</published><updated>2009-09-13T07:44:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/09/13/1566034.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/09/13/1566034.html"/><content type="text">  对于像我一样的初学php的人来说，php的运行环境的搭建一定是一个难关。那么我们使用AppServ这样一个集成环境来帮助我们快速搭建php的运行环境。AppSer中包含了Apache服...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/09/13/1565865.html</id><title type="text">Hibernate缓存</title><summary type="text">在Hibernate中提供了两种缓存来提升程序的性能，分别为一级缓存和二级缓存，也称为内置缓存和外置缓存。 一级缓存在Session中实现，当Session关闭时一级缓存就失效了。我们来看一个使用了来一级缓存的示例： Session session = factory.openSession();Student stu = (Student) session.get(Student.class, ...</summary><published>2009-09-13T00:48:00Z</published><updated>2009-09-13T00:48:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/09/13/1565865.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/09/13/1565865.html"/><content type="text">在Hibernate中提供了两种缓存来提升程序的性能，分别为一级缓存和二级缓存，也称为内置缓存和外置缓存。 一级缓存在Session中实现，当Session关闭时一级缓存就失效了。我们来看一个使用了来一级缓存的示例： Session session = factory.openSession();Student stu = (Student) session.get(Student.class, ...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/07/29/1533871.html</id><title type="text">一个关于SpringSecurity很好的参考文档</title><summary type="text">链接地址如下： http://family168.com/oa/springsecurity/html/index.html 大家可以学习完Spring2.x后研究下！</summary><published>2009-07-29T03:12:00Z</published><updated>2009-07-29T03:12:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/07/29/1533871.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/07/29/1533871.html"/><content type="text">链接地址如下： http://family168.com/oa/springsecurity/html/index.html 大家可以学习完Spring2.x后研究下！</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/07/07/1518278.html</id><title type="text">Struts2.1.6 + Spring2.5+Hibernate3.2整合</title><summary type="text">首先来看需要的jar包： 在web.xml中的配置： &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;web-...</summary><published>2009-07-07T03:44:00Z</published><updated>2009-07-07T03:44:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/07/07/1518278.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/07/07/1518278.html"/><content type="text">首先来看需要的jar包： 在web.xml中的配置： &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;web-...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/06/17/1505155.html</id><title type="text">JQuery和Struts实现Ajax文件上传</title><summary type="text">首先说下使用的框架和插件： struts1.3  jQuery1.3  ajaxupload.3.2.js(一个JQuery的插件，实现Ajax上传的效果...</summary><published>2009-06-17T07:55:00Z</published><updated>2009-06-17T07:55:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/06/17/1505155.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/06/17/1505155.html"/><content type="text">首先说下使用的框架和插件： struts1.3  jQuery1.3  ajaxupload.3.2.js(一个JQuery的插件，实现Ajax上传的效果...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/06/16/1504240.html</id><title type="text">struts1.x+spring2.5+JPA(hibernate)整合</title><summary type="text">1.在web.xml中加入如下配置 &lt;!-- 配置Struts ActionServlet --&gt;&lt;servlet&gt;&lt;servlet-name&gt;ActionServlet&lt;/servlet-name&gt;&lt;servlet-class&gt;org.apache.struts.action.ActionServlet&lt;/se...</summary><published>2009-06-16T05:15:00Z</published><updated>2009-06-16T05:15:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/06/16/1504240.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/06/16/1504240.html"/><content type="text">1.在web.xml中加入如下配置 &lt;!-- 配置Struts ActionServlet --&gt;&lt;servlet&gt;&lt;servlet-name&gt;ActionServlet&lt;/servlet-name&gt;&lt;servlet-class&gt;org.apache.struts.action.ActionServlet&lt;/se...</content></entry><entry><id>http://www.cnblogs.com/kay/archive/2009/05/21/1486535.html</id><title type="text">使用Apache的commons-codes加密</title><summary type="text">  /**   * MD5加密   * @param password &amp;...</summary><published>2009-05-21T09:56:00Z</published><updated>2009-05-21T09:56:00Z</updated><author><name>樊凯</name><uri>http://www.cnblogs.com/kay/</uri></author><link rel="alternate" href="http://www.cnblogs.com/kay/archive/2009/05/21/1486535.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/kay/archive/2009/05/21/1486535.html"/><content type="text">  /**   * MD5加密   * @param password &amp;...</content></entry></feed>
