- 浏览: 499168 次
- 性别:
- 来自: 北京
最新评论
-
springdata_spring:
可以参考最新的文档:如何在eclipse jee中检出项目并转 ...
maven archetype:generate 的进一步理解 -
springaop_springmvc:
apache lucene开源框架demo使用实例教程源代码下 ...
lucene 使用教程<转> -
springmvc-freemarker:
可以参考最新的文档:如何在eclipse jee中检出项目并转 ...
maven 简单实用教程 -
nich002:
zealot 写道顶,推荐maven开发过程系列 大家不要点这 ...
maven 简单实用教程 -
刘宇斌:
您好 有个问题想请教您一下 您这个是通过jdbc连接的,如何 ...
云计算实战 (海量日志管理)hive -- hive + hiveclient (hive 客户端)
文章列表
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
String sDate = simpleDateFormat.format(new Date());
Date date = null;
try {
date = simpleDateFormat.parse(sDate);
} catch (ParseException e) {
log.debug("Get Current Date Exception [by ninja.hzw ...
----------【HIbernate】java.lang.AbstractMethodError: com.microsoft.jdbc.base.BaseDatabaseMetaData.supportsGetGeneratedKeys()Z
解决方案:
问谷老师得知是microsoft提供的数据库驱动存在bug。需要换一种驱动连接,使用jtds(下载地址:http://sourceforge.net/projects/jtds/files/)下载jtds1.2.5版,解压得到jtds-1.2.5.jar,引用到eclipse中项目目录下(去除原驱动引用),更改hibernate配置文 ...
拥有Hibernate3.jar的应用,被部署到weblogic8.1上后,抛出异常<!--StartFragment --> CharScanner; panic: ClassNotFoundException: org.hibernate.hql.ast.HqlToken。 解决方法:在hibernate.properties上,或是在spring的conext xml中,加上一个属性hibernate.query.factory_class,值为org.hibernate.hql.classic.ClassicQueryTranslatorFactory。
...
1) ModelAndView 跳转问题
今天遇到了个纠结的问题,新创建了个controller类,import 相关的类:
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind. ...
本文引自:http://chenkuning.iteye.com/blog/642106 仅作收藏,别无他意
某jsp include另一个jsp之后偶尔报错:Cannot create a session after the response has been committed
google之后发现可能是session的创建时机不对,不应该在include的jsp里面创建session(并没有显示调用request.getSession(),但jsp页面默认有pageContext.getSession()的),如是在当前页面中加入:request.getSession();既然时机 ...
自己写了些sql 脚本的配置文件,以前在tomcat下可以从根目录获得所有这些配置文件,并在服务器启动时进行解析放到缓存。但在weblogic下就不行了!我在网上找过各种weblogic获得文件绝对路径的方案,但都是针对于单个文件读取的方案,不能解决批读取。于是想到了如下解决方案:
写一个xml配置文件来引用所有的之前的配置文件,并写一个类对用dom4j对这个配置文件进行解析,依次读取xml中引入的所有配置文件。
无代码无真相:
用这个xml文件来引入其它配置文件:
<?xml version="1.0" ...
如下异常:
<Jul 27, 2009 10:47:51 AM CST> <Critical> <EmbeddedLDAP> <BEA-171522> <An error occurred while initializing the Embedded LDAP Server. The exception thrown is java.lang.ClassCastException: com.octetstring.vde.backend.BackendRoot cannot be cast to com.octetst ...
如text.replaceAll(filename, newPicName); 出错filename 中含有正则表达式的特殊字符,正则表达式引擎将其解释为语法错误,改成: text.replace(filename, newPicName); 这样就行了,按照普通字符来工作。 replaceAll 方法的第一个参数是一个正则表达式。 replace 方法虽然采用采用正则表达式工具工作的,但在其内部已经进行了字面模式处理, 所有的字符都视为普通字符处理。 不要被 replaceAll 中的 All 欺骗了,这两种方法都替换所有的字符串,只是采用的形式 不同已。
注:把“\”换成“/”应该
--- svn 的合并 from, to
怎么理解这个From和To呢?似乎跟我们的想当然不太一样:因为我们理解,把分支合并到主干,肯定是From分支,To主干。怎么搞反了呢?实际上,Svn认为,我们要合并的,是从主干的某个版本开始,到分支的某个版本结束。两边的版本号实际上是一套系统,不会有重复。
--- 合并前,别忘了对本地项目进行一下更新(从分支上跟新下来,省的合并后提交时报错。)
---更换svn 用户
如果在本机用svn的一个帐户update和commite代码,并且选择了保存用户名和密码。 上面是一个假设,如果这个假设成立,当你准备换另一个svn的用户来update和co ...
Linux下的Memcache安装
1.分别把memcached和libevent上传到 /tmp 目录下
2.先安装libevent:# tar zxvf libevent-2.0.5-beta.tar.gz# cd libevent-2.0.5# ./configure –prefix=/[安装路径]# make# make install
3.测试libevent是否安装成功:成功的话,会输出一些相关信 ...
------------windows linux 之间的通讯:
http://flyer2010.iteye.com/blog/646354
会遇到问题:Access denied
解决方法:
修改/etc/ssh/sshd_config 文件中 的'PasswordAuthentication' 变量 从 ‘no’,改为'yes',将PermitRootLoginl默认值“no”改为"yes” 然后: ...
1 lucene简介 1.1 什么是lucene Lucene是一个全文搜索框架,而不是应用产品。因此它并不像http://www.baidu.com/ 或者google Desktop那么拿来就能用,它只是提供了一种工具让你能实现这些产品。
1.2 lucene能做什么 要回答这个问题,先要了解l ...
-------------- 关于archetype:generate
把以前用的repository 下的jar 清空后发现archetype:generate出问题了,并没有以前的choose a nuber(1/2/3.../41)了 而是只有一个choose a number :58: 并且前面一大堆number 都是remote 的.. 如:
244: remote -> spring-osgi-bundle-archetype (Spring OSGi Maven2 Archetype)
245: remote -> spring-ws-archetype (Spr ...
--- 用maven 的过程中 大问题小问题实在是不少 ,就不一篇文章一篇文章的写了,干脆写在一起 ----
------- nexus 加索引
点击Administration菜单下面的Repositories,将这三个仓库Apache Snapshots,Codehaus Snapshots,Maven Central的configura ...
经过各种搜索后 最后采取了这两篇文章的方案:
//创建maven-weblogic-plugin 时需要创建wlfullclient.jar
Use the following steps to create a wlfullclient.jar file for a client application:
Change directories to the server/lib directory.
cd WL_HOME
/server/lib
Use the following command to create wlfullclient.jar i ...