`
文章列表
http://www.ibm.com/developerworks/cn/opensource/os-cn-cas/index.html#rate http://www.blogjava.net/xcp/archive/2010/04/13/318125.html
1、 mysql 操作 clob             playMethod.setPlayCode(Hibernate.createClob(playMethod.getPlayCodeContent()));             session.save(playMethod); 2、 oracle 操作 clob // 注意,这里的参数是个空格,先新增一个空的Clob进去             playMethod.setPlayCode(Hibernate.createClob(" "));             session.save(playMeth ...
从别人整理的地方找过来的 ,在此道谢。 一、 Spring+Hibernate整合: Spring整合Hibernate,是做了一个很大的调整的,因为spring可以把管理Hibernate的工作都做了,以前的hibernate.cfg.xml文件都去掉了,而将这些内容都交给了spring来管理了。 1、 applicationContext.xml文件中应该配置如下内容: Xml代码  //配置数据连接类  <bean id="dataSource"          class="org.apache.commons.dbcp.BasicDat ...
<!-- 引入XFire预配置信息 --> <import resource="classpath:org/codehaus/xfire/spring/xfire.xml"/> <!-- 使用XFire导出器 --> <bean id="baseWebService" class="org.codehaus.xfire.spring.remoting.XFireExporter" lazy-init="false" abstract="true"> ...
1、首先需要下在xfire jar包。http://grails.org/plugin/xfire 2、配置web.xml     (1) 启动的时候可以加载到配置文件 (认为可以吧xfire-servlet 放到 context 配置文件中,待测试)     <context-param>         <param-name>contextConfigLocation</param-name>         <param-value>                     /WEB-INF/spring.xml,/WEB-INF/xfi ...
记录一个学习webservice 的地址 http://blog.csdn.net/cuker919/article/details/5456905        
1、 需要静态化的页面需要是内容不会经常变动的页面 2、 开始静态化 (1)首先确定好要静态化的jsp (2)打开url 获取jsp (3)通过流的方式读取jsp 输出 html     /**      * @param sourceUrl 源路径      * @param saveDir html 存储路径      * @param htmlName 生成的html 文件名      * @throws IOException      */     public static void convert2Html(String sourceUrl, String saveDir, ...
记录一下 jQuery autocomplete 用法 原文  http://jqueryui.com/demos/autocomplete/#option-source 例子 $(document).ready(function(){ //搜索自动提示代码 $("input#autocomplete").autocomplete({ minLength: 1, source: function( request, response ) { $.ajax({ url:"/jQueryTest/test/login/prefixSea ...
1.需要下载 mod_jk.so 2.配置tomcat Engine jvmRoute="tomcat1"  为tomcat 取个名字在apache 配置中可以用到 <Engine name="Catalina" defaultHost="localhost" jvmRoute="tomcat2"> 3.把tomcat 的相应端口改掉 (1)<Server port="8005" shutdown="SHUTDOWN">  tomcat 关闭端口 ...
6、删除索引 deleteDocuments(Term term) term 同修改term deleteUnusedFiles()  remove any index files that are no longer used. 删除不常用的 以上是今天用来记录学习lucene 的小例子。代码中有错误 ,用的时候需要稍微改动一下 。公司上传有限制 ,需要分割上传。         Class<?> classType;         try         {             classType = Class.forName("org.apache.l ...
其他代码与添加一致,在添加 doc 时改为如下代码即可 indexWriter.updateDocument(new Term("id",index.getId()), document); 4、搜索 按照单个单词搜索         List<IndexModel> indexModels = new ArrayList<IndexModel>();         Directory directory = null;         try{             directory = FSDirectory.open(indexDir); ...

初试 Lucene

1、首先要建立索引目录 2、建立索引 //先判断索引路径是否存在,不存在就建立         File indexDir = new File(Constant.INDEXDIR);         if(!indexDir.exists() && indexDir.isDirectory())         {             indexDir.mkdirs();         }         //创建 建立 indexWriter 的参数  directory indexWriterConf                 Directory dire ...
1、首先找到安装包 hadoop.tar.gz 2、创建一个安装用户   useradd -d /home/hadoopTest -m hadoop 3、解压 tar -zxvf hadoop.tar.gz     补充一下 需要在hadoop 家目录下的 .profile 中添加hadoop_home  的变量 4、修改conf 下       (1)hadoop-env.sh  修改java_home      (2)hdfs-site.xml 修改 需要保存几份(备份)          <name>dfs.replication</name>          ...
1、首先需要下载jdk  地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk-6u32-downloads-1594644.html  找到linux 版本 2、将此文件拷贝到 目标主机 3、安装此文件 ./jdk-6u32-linux-i586-rpm.bin  如果不能安装可能是没有执行权限  chmod 7777 jdk-6u32-linux-i586-rpm.bin  赋给这个文件任何权限 4、安装完成  echo $JAVA_HOME 找到安装目录 5、去/etc/.profile  修改环境变量 与window ...

java

•How to create a new workbook •How to create a sheet •How to create cells •How to create date cells •Working with different types of cells •Text Extraction •Aligning cells •Working with borders •Fills and color •Merging cells •Working with fonts •Custom colors •Reading and writing •Use n ...
Global site tag (gtag.js) - Google Analytics