1 package cn.itcast.hibernate.sh.state; 2 3 import
org.hibernate.Session; 4 import org.hibernate.Transaction; 5 import
org.junit.Test; 6 7 i...
分类:
编程语言 时间:
2014-06-11 12:23:15
阅读次数:
401
就是在struts-config.xml中添加了这么一段
至于原因。。。不清楚我第一反应是form的action写错了,或者action-mapping配置有问题。。。其实不是,因为我发现以前可以运行的action都不能用了,所以才怀疑到这个上面来
分类:
其他好文 时间:
2014-06-11 09:13:39
阅读次数:
213
5年前写的站, 当时是在apache下写的error page, 换了nginx后, 404页面直接跳到了500 服务器内部错误.
只需要在配置
try_files 的时候指定一下就可以了
我的是debian, 在/etc/nginx/site-available/default 里面location /
server{
location / {
try_fi...
分类:
其他好文 时间:
2014-06-08 17:01:43
阅读次数:
204
一般的,我们把事务配在service层,利用service的业务逻辑接口统一的管理。
为什么不用在dao层呢?
因为一个service有可能调用多个dao,而这多个dao有可能相互联系,有时候一个操作需要调用多次数据库,但是这多次调用要么全提交,要么全回滚。
因此,在dao层调用事务理论上说不是一个很明智的选择。应该有业务逻辑层service层负责事务,统一处理。
Spring...
分类:
编程语言 时间:
2014-06-08 15:23:10
阅读次数:
404
【题目】
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.
...
分类:
其他好文 时间:
2014-06-08 15:11:58
阅读次数:
298
1.Socket类
(1)常用属性
AddressFamily 获取Socket的地址族
Available 获取已经从网络接收且可供读取的数据量
Connected 获取一个值,该值只是Socket是在上次Send还是Receive操作 时链接到远程主机...
There is no denying theWhat The KD 6is among
the most widely used athletic shoes available. Because of so many great releases
such as the Aunt Gem KD ...
分类:
其他好文 时间:
2014-06-08 01:12:23
阅读次数:
343
查了一大堆网上的资料全都没用,Google得知,是Windows 7 的socket泄漏
:https://supportkb.riverbed.com/support/index?page=content&id=S23580&actp=LIST_RECENT补丁下载地址:
http://suppo...
分类:
编程语言 时间:
2014-06-07 22:19:32
阅读次数:
857
1.ACID含义ACID,指数据库事务正确执行的四个基本要素的缩写。包含:原子性(Atomicity)、一致性(Consistency)、隔离性(Isolation)、持久性(Durability)。一个支持事务(Transaction)的数据库系统,必需要具有这四种特性,否则在事务过程(Trans...
分类:
其他好文 时间:
2014-06-07 17:03:15
阅读次数:
193
用命令 df 即可# df /var/lib/
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda3 135979984 66905292 62055896 52% /
不仅看到挂在点,也看到分区大小。加上-kh更容易看些:# df /var/lib/ -kh
Files...
分类:
系统相关 时间:
2014-06-07 14:49:25
阅读次数:
536