- 浏览: 27255 次
- 性别:
最新评论
文章列表
atianchen 写道
当一个请求进来时候,我写了一个Filter会根据request请求信息设置当前的sessionFactory
然后就是重写,需要重写spring关于Hibernate3支持的四个类
HibernateAccessor,HibernateDaoSupport,HibernateTemplate,HibernateTransactionManager
其实主要是 ...
对这个贴的补充:动态切换多数据源
引用2。在有多个数据源的时候,需要为每个数据源生成一个 beanfactory 。这个目前可能无法通过 spring 提供的 servlet 来自动实现,需要自己手工来操作。这些 beanfactory 使用同样的 spring xml 配置文件,但是使用不同的数据库配置文件。
对应每一个数据源,在程序启动的时候生成一个 factory ,然后可以为每个 factory 和数据源标识对应起来保存在 hashmap 之类的列表中,以方便后面使用。
3。如果使用 webwork,web 层的 action 不能再在 spring 的配置文件中出现了。在 web ...
《超越自由与尊严》斯金纳 著 王映桥 栗爱平 译 贵州人民出版社1988年版
《超越自由与尊严》一书是斯金纳重要的著作之一,该书一经问世便成为风靡北美的畅销书,随即流行世界。在书中,他根据行为主义的原理,对传 ...
- 2006-10-29 17:49
- 浏览 1624
- 评论(0)
Erlang/OTP document
If a third instance of the module is loaded, the code server will remove (purge) the old code and any processes lingering in it will be terminated. Then the third instance becomes 'current' and the previously current code becomes 'old'.
即 Erlang 只能保留两个版本的 Code ,如果有第三个版本的 Code , ...
- 2006-10-11 11:17
- 浏览 1676
- 评论(0)
http://www.chinaai.org/Article_Show.asp?ArticleID=314
完整的prolog程序是有事实和规则组成的。
事实用来储存一些数据,而规则用来储存某种可以推理出来的关系。
理论上来说使用c语言可以编制任何种类的程序,甚至连prolog语言都是使用c ...
- 2006-10-10 15:28
- 浏览 2016
- 评论(0)
http://npt.cc.rsu.ru/user/wanderer/ODP/Erlang_tutorial.html
Atoms are used in places where in C one might define a constant
the = operator doesn't in fact mean assign, it means "match with".
-- match with -- unify 合一,prolog 里面的合一
the -> construct should be read as "evaluates to ...
- 2006-10-10 11:33
- 浏览 2101
- 评论(0)
http://industry.ccidnet.com/art/1077/20050722/292705_1.html
Continuation则是另一种函数调用方式。它不采用堆栈来保存上下文,而是把这些信息保存在continuation record中。这些continuation record和堆栈的activation record的区别在于,它不采用后入先出的线性方式,所有record被组成一棵树(或者图),从一个函数调用另一个函数就等于给当前节点生成一个子节点,然后把系统寄存器移动到这个子节点。
http://www.chinaitpower.com/2006Aug/2006-08 ...
- 2006-10-08 16:34
- 浏览 1799
- 评论(0)
Functional languages like Erlang have the opposite philosophy. They try to minimize the context surrounding a piece of logic-- a function. All you have to know is what parameters a function takes and what it returns. There is no implicit link between the function and the data it uses. With single-ass ...
- 2006-09-27 01:40
- 浏览 1556
- 评论(0)
Erlang has a process-based model of concurrency with asynchronous message passing.The concurrency mechanisms in Erlang are lightweight, i.e. processes require little memory, and creating and deleting processes and message passing require little computational effort.
Erlang has no shared memory. All ...
- 2006-09-26 12:21
- 浏览 1632
- 评论(0)