
java
iteye_17780
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
spring 2.0 Exception处理
java.lang.IllegalArgumentException: warning no match for this type name: com.tzh.bbs.dao [Xlint:invalidAbsoluteTypeName] 如果在配置spring2.0的事务时,系统后台出现这种异常。 你此时最好查看一下您的spring 配置文件。一般是applicationContext.x...原创 2009-02-11 13:40:25 · 122 阅读 · 0 评论 -
mysql取出空值赋予默认值
可以利用coalesce(字段,默认值)函数。原创 2009-03-26 16:23:24 · 214 阅读 · 0 评论 -
Lucene in Action读书笔记(一)
Understand the process of indexing 1,convert to text 将原始数据转换成lucene可以识别的数据。 可识别的数据转换成Document。Document由lucene自定义的Field组成 2,analysis 会将text内容转化成一些chunks或者tokens。 其中会将内容转成小写格式,使得数据没有大小写之分。 还会将其中的...原创 2011-05-12 12:01:01 · 140 阅读 · 0 评论