`
yanwu
  • 浏览: 33957 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

Lucene学习

近来项目需要使用Lucene,工作之余上网学习了下相关内容,做个笔记 1.创建索引   步骤:创建IndexWriter Java代码  IndexWriter writer = new IndexWriter(                   new NIOFSDirectory(new File(path)), new StandardAnalyzer(                           Version.LUCENE_30), MaxFieldLength.LIMITED);  IndexWriter writer = new IndexWriter( ...
用 jcaptcha 自定义验证码 import com.octo.captcha.service.captchastore.FastHashMapCaptchaStore; import com.octo.captcha.service.image.DefaultManageableImageCaptchaService; import com.octo.captcha.service.image.ImageCaptchaService; public class CaptchaServiceSingleton {         private static ImageCaptchaS ...
spring有三种启动方式,使用ContextLoaderServlet,ContextLoaderListener和ContextLoaderPlugIn. 看一下ContextLoaderListener的源码,这是一个ServletContextListener /**    * Initialize the root web application context.    */ public void contextInitialized(ServletContextEvent event) {    this.contextLoader = createContextLoader(); ...
http://hi.baidu.com/grace_king/blog/item/9179c9b42b2ad0708bd4b2ab.html 才开始学习.看到就记录一下.如有版权问题请联系我删除 Spring2.5rc1发布了,一直想知道它葫芦里卖什么药,以下是文档里的change.log 1. JDK版本: JDK至少要1.4.2以上,如果仍然打算使用1.3的话就请用2.0.6/2.0.7版本吧。 2. Jar包:SpringMVC 不再使用spring.jar 这个庞大的包了。 Spring-webmvc.jar, spring-webmvc-portlet.jar 可以在 lib/mo ...
jQuery为开发插件提拱了两个方法,分别是: 1. jQuery.fn.extend(object); 【对jQuery对象的扩展】包装器方法 例子: (function($){ $.fn.makeItBlue = function() { return this.css('color','blue'); } })(jQuery); 在这里, this代表的是包装集。如果使用this.each方法,那么在each方法中的this则代表DOM元素。 2. jQuery.extend(object); 【对jquery类的扩展】自定义帮助方法 例子: (function($){ $.say = ...
0, There is special support for retrieving multiple class path resources with the same name, via the "classpath*" prefix. For example, "classpath*:/beans.xml" will find all beans.xml files in the class path, be it in "classes" directories or in JAR files. This is particu ...

ajax例子

    博客分类:
  • ajax
ajax 开发源代码
首先,大家先要了解一下jacob ,官方的解释是Java COM Bridge,即java和 com组件间的桥梁(进一步了解com/dcom: http://docs.huihoo.com/com/) com一般表现为dll或exe等二进制文件,像我们呆会会用到的jacob.dll文件 这里说说为什么我们用java去操纵office(如:word)要使用com,而不直接 使用java去做? 首先,我们清楚office是建立在windows平台之上的,本身是一个软件,除了 他自己提供的宏似乎没有什么能对他进行直接的操作;在windows平台上为了 解决像这样的不同应用软件,通信缺乏通用api问题, ...

EJB3入门

    博客分类:
  • EJB
EJB3.rar ejb 入门
OSWorkflow-chinese-manual-2.8.rar

Spring_PDF

Spring_PDF

OSWorkflow_PDF

转工作流参模型.rar
package com.nstars.common.web.listener; import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.context.ApplicationCont ...
概述: Servlet监听器用于监听一些重要事件的发生,监听器对象可以在事情发生前、发生后可以做一些必要的处理。 接口: 目前Servlet2.4和JSP2.0总共有8个监听器接口和6个Event类,其中HttpSessionAttributeListener与 HttpSessionBindingListener皆使用HttpSessionBindingEvent;HttpSessionListener和HttpSessionActivationListener则都使用HttpSessionEvent;其余Listener对应的Event如下所示: Listener接口 Event类 Se ...
1、在安装XP前,请这样操作:开机按f10进bios,在system configuration中将sata native support改成disable,然后再来安装操作系统。 2、驱动: 请注意:        1-请不要使用下载工具下载驱动,建议右键点击---另存为来下载,如果您一 ...
Global site tag (gtag.js) - Google Analytics