lqxue

常用链接

统计

book

tools

最新评论

#

多列列表显示

                                   
结合struts的iterate tag+JSTL1.1实现多列列表的显示。下面一段示例代码中显示的是2列,如果想显示多列,则直接把2改成自己想显示的列数即可。
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

 1                                         <nested:iterate property="items" indexId="index">
 2                                                 <c:if test="${index%2==0}">
 3                                                 <tr>
 4                                                 </c:if>   
 5                                                     <td>
 6                                                         ${index}
 7                                                     </td> 
 8                                                 <c:if test="${(index+1)%2==0}">
 9                                                     </tr>
10                                                 </c:if>
11                                            
12                                         </nested:iterate>

posted @ 2007-05-21 11:31 lqx 阅读(296) | 评论 (0)编辑 收藏

[收藏]javascript调试

http://getfirebug.com/#install

posted @ 2007-05-20 17:28 lqx 阅读(328) | 评论 (1)编辑 收藏

[收藏]MyEclipse5.5,注册码

http://www.1cn.biz/index.php?q=node/394

posted @ 2007-05-20 11:29 lqx 阅读(27984) | 评论 (41)编辑 收藏

[收藏]实战篇:设计自己的Annotation

http://www.javaeye.com/topic/36659

posted @ 2007-05-17 13:47 lqx 阅读(136) | 评论 (0)编辑 收藏

[收藏]hibernat get&load

http://forum.springside.org.cn/viewthread.php?tid=360&highlight=session%2B%2Bload

posted @ 2007-05-15 11:22 lqx 阅读(110) | 评论 (0)编辑 收藏

How to test OpenSessionInView with J-Unit

http://hellboys.bokee.com/3001688.html

posted @ 2007-05-15 10:19 lqx 阅读(126) | 评论 (0)编辑 收藏

原创 Ofbiz 入门教程

http://www.cnblogs.com/sunsonbaby/archive/2004/11/29/70718.html

posted @ 2007-05-14 16:35 lqx 阅读(215) | 评论 (0)编辑 收藏

为Java应用加入脚本引擎

http://tech.ccidnet.com/art/294/20021128/32098_1.html

posted @ 2007-05-14 16:24 lqx 阅读(107) | 评论 (0)编辑 收藏

数据库:Hibernate的事务和并发(ZT)

http://java.ccidnet.com/art/297/20061129/962923_1.html

posted @ 2007-05-14 14:23 lqx 阅读(94) | 评论 (0)编辑 收藏

hibernate version

3.4.2 Version Attributes
The Version field or property is used by the persistence provider to perform optimistic locking. It is
accessed and/or set by the persistence provider in the course of performing lifecycle operations on the
entity instance. An entity is automatically enabled for optimistic locking if it has a property or field
mapped with a Version mapping.

An entity may access the state of its version field or property or export a method for use by the application
to access the version, but must not modify the version value[17]. Only the persistence provider is
permitted to set or update the value of the version attribute in the object.

The version attribute is updated by the persistence provider runtime when the object is written to the
database. All non-relationship fields and properties and all relationships owned by the entity are
included in version checks.

The persistence provider's implementation of the merge operation must examine the version attribute
when an entity is being merged and throw an OptimisticLockException if it is discovered that
the object being merged is a stale copy of the entity—i.e. that the entity has been updated since the
entity became detached. Depending on the implementation strategy used, it is possible that this exception
may not be thrown until flush is called or commit time, whichever happens first.

The persistence provider runtime is only required to use the version attribute when performing optimistic
lock checking. Persistence provider implementations may provide additional mechanisms beside
version attributes to enable optimistic lock checking. However, support for such mechanisms is not
required of an implementation of this specification.[18]

If only some entities contain version attributes, the persistence provider runtime is required to check
those entities for which version attributes have been specified. The consistency of the object graph is not
guaranteed, but the absence of version attributes on some of the entities will not stop operations from
completing.

posted @ 2007-05-14 14:17 lqx 阅读(282) | 评论 (0)编辑 收藏

仅列出标题
共18页: First 上一页 10 11 12 13 14 15 16 17 18 下一页