码迷,mamicode.com
首页 >  
搜索关键字:department    ( 645个结果
Hibernate_13_QBC查询
Employee类、Department类、SessionFactoryTools类、Employee.hbm.xml文件、Department.hbm.xml文件、Hibernate.cfg.xml文件 都与12中的相同。 持久化层中的代码: // 使用QBC方式查询:Query By Criteria @Test public void testQBC() throws Excepti...
分类:系统相关   时间:2014-08-07 13:09:30    阅读次数:262
Hibernate_15_缓存的使用
缓存是:当第一次查询时,会将已查询到的数据保存在缓存区,当再次查询符合条件的内容时,会首先从缓存中查找,如果找不到,在从数据库中加载。 本例中Department类、Employee类、SessionFactoryTools类与4中的相同。 Department.hbm.xml文件配置: <!-- 指定当前类要使用二级缓存 ,但不主张使用该方法, 主张在主配置文件中设...
分类:系统相关   时间:2014-08-07 13:08:20    阅读次数:290
uva208 - Firetruck
Firetruck The Center City fire department collaborates with the transportation department to maintain maps of the city which reflects the current stat...
分类:其他好文   时间:2014-08-01 09:13:31    阅读次数:223
POJ 2349 Prim
Arctic Network Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 9973 Accepted: 3302 Description The Department of National Defence (DND) wishes to connect several northern outposts by ...
分类:其他好文   时间:2014-07-31 17:04:21    阅读次数:199
配置DAC
本文只为本人自己记录经验,故不会写得太详细。1.配置默认域策略,ComputerConfiguration--Policies--AdministrativeTemplates--System--KDC--KDCsupportforclaimsandKerberosarmoring.(Enabled,Supported)2.在ADAC中选DAC--ClaimTypes,新建名为Department(anythingyouneed)的..
分类:其他好文   时间:2014-07-30 17:55:44    阅读次数:187
UVa 1339 Ancient Cipher
Ancient Cipher Ancient Roman empire had a strong government system with various departments, including a secret service department. Important documents were sent between provinces and the capit...
分类:其他好文   时间:2014-07-30 17:35:14    阅读次数:227
POJ-2104-K-th Number(函数式线段树)
Description You are working for Macrohard company in data structures department. After failing your previous task about key insertion you were asked to write a new data structure that would be able...
分类:其他好文   时间:2014-07-28 16:14:11    阅读次数:257
joinColumns和inverseJoinColumns的用法
最近在工作中使用springside,里面用到了hibernate的多对多 一开始我在配置department(部门表)和menu(栏目表)的时候,这样写的。 Department实体类中的getMenus上写的joinColumn是menu_id,inverseJoinColumns写的是department_id 我的页面是根据所选部门查找出对应的栏目权限从而打勾,我数据库中间表...
分类:其他好文   时间:2014-07-26 02:47:26    阅读次数:223
关于hibernate的一点心得
1.部门和员工的关系:部门员工是一对多的关系,即一个部门有多个员工,所以员工表里有部门id:depart_id在下面这个代码中各添加部门和员工的一个记录即:新增一个部门,同时这个部门下有一个员工static Department add() { Session s = null; Transac.....
分类:系统相关   时间:2014-07-23 16:16:51    阅读次数:266
uva 219 - Department of Redundancy Department(dfs+剪枝)
题目链接:uva 219 - Department of Redundancy Department 题目大意:给定一些关系,问哪一些关系是可以被替代的,如果可以被替代,给出替代的方案,一种即可。 解题思路:因为总共也就26个字母,所以用二进制数表示状态。剪枝,每次将所有可选关系均考虑进去都无法满足则是false。 #include #include #include usi...
分类:其他好文   时间:2014-07-22 00:11:33    阅读次数:214
645条   上一页 1 ... 60 61 62 63 64 65 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!