注意writer的参数有多个,特别是有一个boolean的参数决定刷新或在附加文本
输出的结果示例:
2006.12.12 at 10:21:13
start connection databse:
driver name:oracle.jdbc.driver.OracleDriver
posted @
2006-12-12 12:16 aimy 阅读(214) |
评论 (0) |
编辑 收藏
1、org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [com.xindeco.business.pojo.NonageRegister#82]
at org.hibernate.ObjectNotFoundException.throwIfNull(ObjectNotFoundException.java:27)
at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:65)
at org.hibernate.proxy.AbstractLazyInitializer.getImplementation(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
at org.apache.catalina.core.ApplicationDispatcher.forward
错误的原因:
在nonregsiter中已经手动删除了id=‘82’的记录,而在WF_task以及wf-proces中还有bizclass = '3' && bizId = '82'的记录,只要删除wf-task中相应的记录.
posted @
2006-07-09 16:17 aimy 阅读(227) |
评论 (0) |
编辑 收藏
ProcessInstance.hbm.xml:
<?
xml version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<!
DOCTYPE hibernate
-
mapping PUBLIC
"
-//Hibernate/Hibernate Mapping DTD 3.0//EN
"
"
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd
"
>
<
hibernate
-
mapping
>
<
class
name
=
"
com.xindeco.workflow.ProcessInstance
"
table
=
"
WF_PROCESS
"
dynamic
-
update
=
"
true
"
dynamic
-
insert
=
"
true
"
select
-
before
-
update
=
"
false
"
optimistic
-
lock
=
"
version
"
>
<
id
name
=
"
ID
"
column
=
"
ID
"
type
=
"
long
"
length
=
"
30
"
>
<
generator
class
=
"
native
"
>
</
generator
>
</
id
>
<
discriminator
column
=
"
bizClass
"
type
=
"
string
"
/>
<
property
name
=
"
state
"
type
=
"
java.lang.Integer
"
update
=
"
true
"
insert
=
"
true
"
access
=
"
property
"
column
=
"
state
"
length
=
"
10
"
/>
<
many
-
to
-
one
name
=
"
flow
"
class
=
"
com.xindeco.workflow.WFFlow
"
cascade
=
"
none
"
outer
-
join
=
"
auto
"
update
=
"
true
"
insert
=
"
true
"
access
=
"
property
"
column
=
"
flowId
"
/>
<
set
name
=
"
tasks
"
lazy
=
"
true
"
inverse
=
"
true
"
cascade
=
"
delete
"
sort
=
"
unsorted
"
>
<
key
column
=
"
processId
"
>
</
key
>
<
one
-
to
-
many
class
=
"
com.xindeco.workflow.WFTask
"
/>
</
set
>
</
class
>
</
hibernate
-
mapping
>
CollRegPI.hbm.xml:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping default-access="field" >
<subclass name="com.xindeco.business.pojo.wf.CollRegPI"
discriminator-value="2"
extends="com.xindeco.workflow.ProcessInstance"
lazy="false">
<many-to-one name="collReg"
class="com.xindeco.business.pojo.CollReg"
column="bizId"
cascade="none"/>
</subclass>
</hibernate-mapping> 数据库的数据:
id flowid bizId bizClass state
21 2 9 2 0
22 2 10 2 0
23 2 11 2 0
24 2 12 2 0
25 2 13 2 0
26 2 14 2 0
29 2 17 2 0
30 2 18 2 1
44 4 1 32 0
45 4 2 32 1
46 5 1 33 0
47 5 2 33 1
48 5 3 33 0
50 3 1 3 0
51 3 1 3 0
如果bizclass=2是同一种类型的class。由
<discriminator
column="bizClass"
type="string"
/>来表示。
posted @
2006-07-06 10:37 aimy 阅读(384) |
评论 (0) |
编辑 收藏
org.hibernate.hql.QuerySplitter - no persistent classes found for query class:
意味着你没有将someclass的配置文件放在hibernate.config或没有写配置文件。
posted @
2006-07-04 10:30 aimy 阅读(1169) |
评论 (0) |
编辑 收藏
1,通过构造函数创建bean
<bean id="baseDAO" class="com.aimy.core.dao.impl.BaseDAOImpl">
相当于
basedaoimpl baseDAO = new BaseDAOImpl();
2,通过静态工厂创建bean
<bean id="driver1" class="com.aimy.driver.driverManager"
factory-method="createInstance"/>
相当于
Object driver1 = driverManager.createInstance(); 其中没有指定driverManager.createInstance();返回对象的类型,而且createInstance()必须是static方法
3,通过实例工厂方法创建bean
<bean id="father" class="com.aimy.Father"/>
........
<bean id="son" factory-bean="father" factory-method="createSon"/>
相当于
Father father = new Father();
Object son = father.createSon();
其中father和son必须在同一个bean工厂或父bean工厂,即在同一个applicationcontext或子applicationcontext
二、如果applicationcontext默认预实例化那些singleton bean,这样就可以在beanfactory装载时就检查出错误,而如果singleton bean设置为lazy-mode,
posted @
2006-06-26 23:26 aimy 阅读(232) |
评论 (0) |
编辑 收藏
hibernate 保存空值的细节
1。如果字段在pojo类中是复杂对象类型,则在数据库用nulll表示。
2。如果字段在pojo类中是简单数据类型,则在数据库用0表示。
posted @
2006-06-26 09:56 aimy 阅读(169) |
评论 (0) |
编辑 收藏
1. document.name.value----->document.all.name.value
2. eval(document.all.name)---->eval('document.all.name')
3.javascript:window.history.go(-1)
4、在action方法中只要抛出exception,就会跳到jspexception页面中,怎么处理。
posted @
2006-06-22 13:19 aimy 阅读(188) |
评论 (0) |
编辑 收藏
为了将业务逻辑放到service层,比如判断登陆用户的信息,而在service层无法用SysUser user = (SysUser) request.getSession().getAttribute(WebConstants.SESSION_USER);因此在BaseService设一个属性为
public void setOperator(Entity operator);
public Entity getOperator();
posted @
2006-05-17 11:17 aimy 阅读(291) |
评论 (0) |
编辑 收藏
private static WFEngine instance;
public static final WFEngine getInstance() {
return instance;
}
posted @
2006-05-17 10:05 aimy 阅读(195) |
评论 (0) |
编辑 收藏
<sqlMap namespace="PersonnelRegist">
<typeAlias alias="ID" type="com.xindeco.core.pojo.IDEntity"/>
</select>
<select id="GraAppInfo.searchUpApply" parameterClass="com.xindeco.business.dto.GraAppInfoDTO" resultClass="ID" cacheModel="userCache">
select distinct a.ID AS id
from TGraAppInfo a left join TEMPLOYUNITBASEINFO b on a.unit=b.MEMBERID
where appstatus = '1'
<dynamic>
<isNotEmpty prepend="AND" property="name">(a.name like '%' + #name# + '%')</isNotEmpty>
<isNotEmpty prepend="AND" property="unit">(b.UNITNAME like '%' + #unit# + '%')</isNotEmpty>
</dynamic>
</select>
</sqlMap>
注意sqlmapGraAppInfoDTO的name,unit只能是基本数据类型,不能是复杂数据类型.
2、<script>的位置
<script>
form1.srchEdit.value='<%=srchEdit%>';
form1.srchType.value='<%=srchType%>';
</script>
<form>
<input type="text" name="srchEdit"/>
<input type="text" name="srchType"/></form>
与<form>
<input type="text" name="srchEdit"/>
<input type="text" name="srchType"/>
</form>
<script>
form1.srchEdit.value='<%=srchEdit%>';
form1.srchType.value='<%=srchType%>';
</script>
的差别,必须在form加载完对它赋值,否则srchEdit又重新加载,为null
3、hibernate属性设置出现错误:
如果pojo类取fSUnit属性名,系统将无法识别。get和set将取不到值。
posted @
2006-05-11 10:06 aimy 阅读(308) |
评论 (0) |
编辑 收藏
昨天晚上我给他讲了英文笑话,虽然他指出了很多错误,但那是个好的开始。
A redneck bought a tickect and won the lottery.
He went to claim it .He said:"I want $20 million right now"
who verified his tickect number replied to him :"No,sir.It doesn't work this way.we give you $1 million today,you will get the rest spread on for the next 19 years."
The redneck said:"I want all my money.I won it,and i want it"
The man had to explained to him patiently:"you would get $1 million,and the rest during the next 19 years."
The redneck ,furious with the man ,screamed out:"I want all my money.If you don't give me all my money ,i want my dollar back!"
注意读音:money、million、battle zone。
我的叔叔silas H.E.Bates
我的叔叔silas 活了九十五岁,有充足的时间去尝试很多事情.他一度做过掘墓人.
In a life of 95 years ,my uncle found time to try most things, there was a time he become a gravedigger.
posted @
2006-05-09 14:34 aimy 阅读(109) |
评论 (0) |
编辑 收藏
1、get是从服务器上取得数据,post是向服务器上传送数据。
2、get是将参数数据队列(表单)加到提交表单的action所指定的url中,值和表单的各个字段是相互对应的,Get将表单中数据的按照variable=value的形式,添加到action所指向的URL后面,并且两者使用“?”连接,而各个变量之间使用“&”连接,在url中是可以看见的,
post是将表单各个字段放在http header内一起传送到action中的URL中,
3、get,服务器通过request.getQuery()获得对应的值;对于post,服务器通过request.getForm()表单的值。
4、get,传送的数据小,post,传送的数据大,上传文件一般用post
特别注意:
<form action="/GraAppInfo/GraAppInfo.do?method=UpList" method="post">
<select name="srchType">
<option value="0">名字</option>
<option value="1">用人单位</option>
</select>
<input height="18" name="srchEdit" type="text" align="right">
<input type="submit" value="查询">
显示的URL:http://localhost:8080/GraAppInfo/GraAppInfo.do?method=UpList
<form action="/GraAppInfo/GraAppInfo.do?method=UpList" method="get">
显示的URL:http://localhost:8080/GraAppInfo/GraAppInfo.do?srchType=0&srchEdit=da
可见post 会覆盖action中的参数,
5、中文用post传递不会出现乱码,用get传递会出现乱码
所以传到action后要通过
String srchEdit = new String(graForm.getSrchEdit().getBytes("iso8859-1"), "gb2312");
处理。
二、传到页面的值乱码
posted @
2006-05-08 09:50 aimy 阅读(215) |
评论 (0) |
编辑 收藏