- 军军小站|张军博客
搜索到与相关的文章
编程技术

七、三种状态

三种状态的区分关键在于有没有IDID在数据库中有没有在内存中有没有(session缓存)三种状态:transient:内存中一个对象,没ID,缓存中也没有persistent:内存中有,缓存中有,数据库有(ID)detached:内存有,缓存没有,数据库有,有ID七、三种状态

系统 2019-08-12 09:30:08 2181

编程技术

EasyJWeb中的代码生成体验

EasyJWebTools提供了两种代码生成方式,一种是基于命令行的代码生成,另一种是基于开发工具IDE插件的可视化生成。EasyJW

系统 2019-08-12 09:30:07 2181

编程技术

本地事务系列之五:使用Transactional注解

AOP的配置稍显复杂,通过@Transactional注解,同样可以实现:1.在需要事务的类或方法上加@Transactional:如果是类上加注解,该类的所有public方法都会应用事务如果是方法上加注解,该方法会应用事务。在接口上加注解有风险,如果使用CGLIB(类代理)将不会启用事务。2.开启注解事务开关:FruitShop实现:publicclassAnnotationTxFruitShopextend

系统 2019-08-12 09:29:45 2181

各行各业

SGU 101 修改

感谢这里。test4确实是个不连通的case,奇怪的是我用check函数跟if(check()==false)来判断这个case,当不连通时就死循环,得到的结果是不一样的,前者得到WA,后者得到TLE,难道SGU能自动在某个条件下终止死循环,然后返回false吗。不连通的情况FIX了,修改了代码如下:#include#include#include#include#include#

系统 2019-08-12 09:27:20 2181

各行各业

活动目录(Active Directory)小结

标题:活动目录(ActiveDirectory)小结关键词:活动目录ADADSILDAP作者:JRQ链接:http://blog.csdn.net/jrq/archive/2007/03/17/1531812.aspx正文:1.活动目录(AD)ActiveDirectory是用于WindowsServer的目录服务。它存储着网络上各种对象的有关信息,并使该信息易于管理员和用户查找及使用。ActiveDirectory目录服务使用结构化的数据存储作为目录信息

系统 2019-08-12 09:26:43 2181

各行各业

搜索分布式

http://blog.sina.com.cn/s/blog_539d361e0100xcy9.htmlhttp://stackoverflow.com/questions/6923071/lucene-is-it-the-right-answer-for-huge-indexhttp://www.hpl.hp.com/techreports/2008/HPL-2008-64.htmlhttp://www.gossamer-threads.com/list

系统 2019-08-12 09:26:40 2181

各行各业

有关MOSS2007的书籍已有不少

----网上可下载----AddisonWesleyEssentialSharePoint2007ApressBeginningSharePointwithExcelFromNovicetoProfessionalMicrosoftSharePointBuildingOffice2007SolutionsinCSharp2005ForDummiesMicrosoftSharePoint2007ForDummiesMicrosoftPressMOSS2007

系统 2019-08-12 09:26:40 2181

数据库相关

map::count

Becausemapcontainersdonotallowforduplicatekeys,thismeansthatthefunctionactuallyreturns1ifanelementwiththatkeyisfound,andzerootherwise.//map::count#include#includeusingnamespacestd;intmain(){mapmymap;charc;

系统 2019-08-12 01:55:23 2181

数据库相关

leetcode------Partition List

标题:PartitionList通过率:27.5%难度:中等Givenalinkedlistandavaluex,partitionitsuchthatallnodeslessthanxcomebeforenodesgreaterthanorequaltox.Youshouldpreservetheoriginalrelativeorderofthenodesineachofthetwopartitions.Forexample,Given1->4->3-

系统 2019-08-12 01:54:22 2181

Oracle

操作oracle的tnsnames.ora文件

#region获取tnsnames.ora路径privatestringGetTNSNAMESORAFilePath(){RegistryKeyrgkLm=Registry.LocalMachine;RegistryKeyrgkOracleHome=rgkLm.OpenSubKey("SOFTWARE").OpenSubKey("ORACLE");stringhome=rgkOracleHome.GetValue("ORACLE_HOME").ToStri

系统 2019-08-12 01:53:05 2181