
Spring
白米稀饭ice
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Spring事务控制 @Transactional
@Transactional(propagation = Propagation.REQUIRED, rollbackFor = {Exception.class},) public BexResult operScheduleConnect(MetaRequest metaRequest){ } @Transactional代表使用Spring事务控制 propagation用法讲解: 1、PR...原创 2019-01-16 20:53:28 · 497 阅读 · 0 评论 -
CollectionUtils工具类
String[] arrayA = new String[] { "A", "B", "C", "D", "E", "F" }; String[] arrayB = new String[] { "B", "D", "F", "G", "H", "K" }; List<String> listA = Arrays.asList(arrayA); List&...原创 2019-06-26 14:35:40 · 486 阅读 · 0 评论