
SSH
文章平均质量分 86
iteye_10362
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spring JdbcTemplate 查询结果 实体生成工具
import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import java.lang.reflect.Field; import java.util.*; /** * Created by 黄永光 * User: Administrator * Dat...2011-08-19 16:15:42 · 320 阅读 · 0 评论 -
Transaction rolled back because it has been marked as rollback-only异常解决
原来是这样设置的: <tx:attributes> <tx:method name="*" read-only="true"/> </tx:attributes> 发现selectA调用selectB,如果selectB抛出Exception,selectA中捕获Excep...原创 2012-03-22 14:19:25 · 562 阅读 · 0 评论