Profile

x_小米

这家伙很懒,什么也没写
资源:4 粉丝:0

x_小米上传的资源

lucene学习文档初学者很好的文档
1.2lucene能做什么要回答这个问题,先要了解lucene的本质。实际上lucene的功能很单一,说到底,就是你给它若干个字符串,然后它为你提供一个全文搜索服务,告诉你你要搜索的关键词出现在哪里。知道了这个本质,你就可以发挥想象做任何符合这个条件的事情了。你可以把站内新闻都索引了,做个资料库;你可以把一个数据库表的若干个字段索引起来,那就不用再担心因为“%like%”而锁表了;你也可以写个自己的搜索引擎……
RAR
18.12MB
2019-07-07 08:21
EJB为了满足架构的目标规范中描述了服务器Server容器Container类Class和实例Instance Home和Remote接口
为了满足架构的目标,规范中描述了   服务器 (Server)   容器 (Container)   类 (Class) 和实例 (Instance)   Home 和 Remote 接口   客户端 (Client)
WPS
85.5KB
2019-03-09 08:44
权限树就是也权限控制
package com.tansuo.biz; import java.util.List; import com.tansuo.dao.RoleDAO; import com.tansuo.entity.Role; public class RoleBiz { private RoleDAO rdao; public void setRdao(RoleDAO rdao) { this.rdao = rdao; } public void save(Role role){ rdao.save(role); } public void delete(int id)
RAR
1.89MB
2019-03-02 16:02
HibernateCommonDAO
private Class entityClass; public HibernateCommonDAO() { Type type = getClass().getGenericSuperclass(); if (type instanceof ParameterizedType) { Type[] types = ((ParameterizedType) type).getActualTypeArguments(); entityClass = (Class)types[0]; } }
JAVA
1.07KB
2018-12-20 08:39
暂无更多数据