上一页 1 2 3 4 5 6 7 8 9 10 ··· 22 下一页

2015年12月24日

如何用数据泵导入数据

摘要: 数据泵create directory tmpdir as 'd:\';grant read,write on directory tmpdir to system;expdp system/welcome1 schemas=SGS_KARAMY_PLAN directory=tmpdir dump... 阅读全文

posted @ 2015-12-24 10:27 kebizhanmushi 阅读(352) 评论(0) 推荐(0) 编辑

如何替换orcl实例下的四个数据库

摘要: 1,drop 数据库对应的用户2,创建新的表空间 新的用户3,导入新的数据库imp grid_sysdb/sagis@klmy file=F:\data\addr_interestpoint.dmp tables= addr_interestpoint ignore=y 阅读全文

posted @ 2015-12-24 10:15 kebizhanmushi 阅读(162) 评论(0) 推荐(0) 编辑

2015年12月13日

强制加载

摘要: 当提交登录按钮时,如果有用户名和密码,返回这个用户。由于默认是懒加载,所以需要强制加载,然后返回用户 阅读全文

posted @ 2015-12-13 17:09 kebizhanmushi 阅读(109) 评论(0) 推荐(0) 编辑

2015年12月12日

import javax.servlet.FilterConfig;

摘要: 具体的使用方法你可以在google上搜索 “filter 过滤器”,FilterConfig可以获取部署描述符文件(web.xml)中分配的过滤器初始化参数。针对你的问题回答,结果就是说FilterConfig可以获得web.xml中,以 filter 作为描述标签内的参数。定义:FilterCon... 阅读全文

posted @ 2015-12-12 22:46 kebizhanmushi 阅读(202) 评论(0) 推荐(0) 编辑

velocity .vm

摘要: 关于.vm 后缀的文件,是velocity的文件。velocity是基于java的一种页面模板引擎,支持#if #else #foreach等写法的前台文件。$link.contextPath是该引擎支持的一种默认写法,可以取得应用程序执行根路径。Velocity是一个基于java的模板引擎(tem... 阅读全文

posted @ 2015-12-12 17:04 kebizhanmushi 阅读(183) 评论(0) 推荐(0) 编辑

@Autowired

摘要: * 修改在原来注入spirng容器中的bean的方法。 在域变量上加上标签@Autowired,并且去掉 相应的get 和set方法清单 6. 使用 @Autowired 注释的 Boss.javaview plainpackagecom.baobaotao;importorg.springfram... 阅读全文

posted @ 2015-12-12 15:25 kebizhanmushi 阅读(185) 评论(0) 推荐(0) 编辑

2015年12月9日

springMVC

摘要: 一:配置web.xml 1)问题:spring项目中有多个配置文件mvc.xml dao.xml 2)解决:在web.xml中 contextConfigLocation /WEB-INF/xxx/*.xml xxx表示xml文件路径 *.xml表示后缀名为xml的任意文件 3)可以使用 逗号分... 阅读全文

posted @ 2015-12-09 20:34 kebizhanmushi 阅读(95) 评论(0) 推荐(0) 编辑

2015年12月4日

索引

摘要: 当表中有大量记录时,若要对表进行查询,第一种搜索信息方式是全表搜索,是将所有记录一一取出,和查询条件进行一一对比,然后返回满足条件的记录,这样做会消耗大量数据库系统时间,并造成大量磁盘I/O操作;第二种就是在表中建立索引,然后在索引中找到符合查询条件的索引值,最后通过保存在索引中的ROWID(相当于... 阅读全文

posted @ 2015-12-04 22:00 kebizhanmushi 阅读(95) 评论(0) 推荐(0) 编辑

2015年12月1日

hibernate查询

摘要: 阅读全文

posted @ 2015-12-01 21:26 kebizhanmushi 阅读(93) 评论(0) 推荐(0) 编辑

2015年11月30日

Adivisor

摘要: 1、Adivisor是一种特殊的Aspect,Advisor代表spring中的Aspect2、区别:advisor只持有一个Pointcut和一个advice,而aspect可以多个pointcut和多个advice 阅读全文

posted @ 2015-11-30 13:07 kebizhanmushi 阅读(155) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 22 下一页

导航