- 浏览: 161720 次
- 性别:
- 来自: 杭州
最新评论
文章列表
一、我们一般通过下面的代码来应用事务管理:
[Java]
view plain
copy
public
void
addEmployee(Employee employee)
throws
SQLException {
transactionTemplate.execute(new
TransactionCallback() {
public
Object doInTransaction(TransactionStatus ts) {
try
{ ...
9.3 编程式事务
9.3.1 编程式事务概述
所谓编程式事务指的是通过编码方式实现事务,即类似于JDBC编程实现事务管理。
Spring框架提供一致的事务抽象,因此对于JDBC还是JTA事务都是采用相同的API进行编程。
java代码:
查看
复制到剪贴板
打印
Connection conn =
null
;
UserTransaction tx = null
;
try
{
tx = getUserTransaction(); ...
来自:http://awtqty-zhang.iteye.com/blog/1612222
Spring提供的三种定时任务机制及其比较
:
来源:http://blog.csdn.net/52rainbow/article/details/4004206
1. 基于Quartz的定时机制:
下面详细解释这个类图中涉及的关键类及其使用场景
1.1. SchedulerFactoryBean:
这是Spring中基于Quartz的定时机制入口,只要Spring容器装载了这个类,Quartz定时机制就会启动,并加载定义在这个类中的所有trigger.
Spr ...
参考文章:http://www.cnblogs.com/mingmingruyuedlut/archive/2011/10/18/2216553.html
在写这篇文章之前,曾经写过一篇关于
AJAX
技术的随笔,不过涉及到的方面很窄,对
AJAX
技术的背景、原理、优缺点等各个方面都很少涉及
null
。这次写这篇文章的背景是因为公司需要对内部程序员做一个培训。项目经理找到了我,并且征询我培训的主题,考虑到之前
Javascript
、
CSS
等
WEB
开发技术都已经讲解过了,所以决定针对
AJAX
这一块做一个比较系统的培训,所以这篇文章实际上 ...
ssh: connect to host localhost port 22: Connection refused
解决:net start sshd
我的开发环境:
操作系统centos5.5 一个namenode 两个datanode
Hadoop版本:hadoop-0.20.203.0
Eclipse版本:eclipse-java-helios-SR2-linux-gtk.tar.gz(使用3.7的版本总是崩溃,让人郁闷)
第一步:先启动hadoop守护进程
具体参看:http://www.cnblogs.com/flyoung ...
error:org.apache.oozie.action.ActionExecutorException: JA002:
org.apache.hadoop.security.AccessControlException: Permission
denied: user=xxj, access=WRITE,
inode="user":hadoop:supergroup:rwxr-xr-x
sulution:added this entry to conf/hdfs-site.xml
<property>
<name>dfs.permiss ...
第一步:修改core-site.xml,配置如下内容:
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl"
href="configuration.xsl"?>
<!-- Put site-specific property overrides in this
file. -->
<configuration>
<property>
<name>fs.default.name< ...
$ hadoop dfs -ls
12/08/25 01:48:31 INFO ipc.Client: Retrying connect to server: localhost/127.0.0.1:9000. Already tried 0 time(s).
12/08/25 01:48:33 INFO ipc.Client: Retrying connect to server: localhost/127.0.0.1:9000. Already tried 1 time(s).
12/08/25 01:48:35 INFO ipc.Client: Retrying connect t ...
①could only be replicated to 0 nodes, instead of 1的解决方案
1、先确保自己的节点都是启动的状态
$hadoop-daemon.sh start namenode
$hadoop-daemon.sh start datanode
如果还是不行
如果你的 conf/core-site.xml的配置是:
<configuration>
<property>
<name>fs.default.name</name>
...
http://www.doc88.com/p-198102193094.html
http://sishuok.com/forum/blogPost/list/5337.html
Struts包介绍
(http://www.blogjava.net/lzhidj/archive/2008/07/10/213898.html
)(大部分叙述性的文字和图从其文中拷贝):
包名
说明
org.apache.struts2. components
该包封装视图组件,
Struts2在视图组件上有了很大加强,不仅增加了组件的属性个数,更新增了几个非常有用的组件,如
updownselect、
doubleselect、
datetimepicker、
token、
tree等。
另外,
St ...
背景:之前UT测试中跑测试用例时,经常会出现相互的数据干扰的情况,考虑到开发的效率,每人一个自己的数据库用户
随之的问题:由于业务在一直发生变化,数据库的结构以及基础的数据也再发生变化,需要有一套脚本完成数据库的结构以及数据的统一。
参考链接 http://blog.csdn.net/rose19891213/article/details/6085899
http://blog.csdn.net/zh2qiang/article/details/6795823
忙了两个多小时终于把最困难的地方给过去了,直接贴代码
<?xml version="1.0" encoding="gb2312"?>
<!-- binding ...
大致的源代码包
1.
org.hibernate
:该包的类基本上都是接口类和异常类
2.
org.hibernate.cache.*
:
cache
的实现类
3.
org.hibernate.cfg.*
:配置文件读取类
4.
org.hibernate.collection.*
:
Hibernate
集合接口实现类:例如
List
(
Per