Java-API-Package:org.springframwork.transaction.annotation
| ylbtech-Java-API-Package:org.springframwork.transaction.annotation |
| 1.返回顶部 |
Package org.springframework.transaction.annotation
See: Description
Interface Summary Interface Description TransactionAnnotationParser Strategy interface for parsing known transaction annotation types.TransactionManagementConfigurer Interface to be implemented by @Configurationclasses annotated with @EnableTransactionManagementthat wish to or need to explicitly specify the defaultPlatformTransactionManagerbean to be used for annotation-driven transaction management, as opposed to the default approach of a by-type lookup.Class Summary Class Description AbstractTransactionManagementConfiguration Abstract base@Configurationclass providing common structure for enabling Spring's annotation-driven transaction management capability.AnnotationTransactionAttributeSource Implementation of theTransactionAttributeSourceinterface for working with transaction metadata in JDK 1.5+ annotation format.Ejb3TransactionAnnotationParser Strategy implementation for parsing EJB3'sTransactionAttributeannotation.JtaTransactionAnnotationParser Strategy implementation for parsing JTA 1.2'sTransactionalannotation.ProxyTransactionManagementConfiguration @Configurationclass that registers the Spring infrastructure beans necessary to enable proxy-based annotation-driven transaction management.SpringTransactionAnnotationParser Strategy implementation for parsing Spring'sTransactionalannotation.TransactionManagementConfigurationSelector Selects which implementation ofAbstractTransactionManagementConfigurationshould be used based on the value ofEnableTransactionManagement.mode()on the importing@Configurationclass.Enum Summary Enum Description Isolation Enumeration that represents transaction isolation levels for use with theTransactionalannotation, corresponding to theTransactionDefinitioninterface.Propagation Enumeration that represents transaction propagation behaviors for use with theTransactionalannotation, corresponding to theTransactionDefinitioninterface.Annotation Types Summary Annotation Type Description EnableTransactionManagement Enables Spring's annotation-driven transaction management capability, similar to the support found in Spring's<tx:*>XML namespace.Transactional Describes a transaction attribute on an individual method or on a class.
Package org.springframework.transaction.annotation Description
| 2.返回顶部 |
| 3.返回顶部 |
| 4.返回顶部 |
| 5.返回顶部 |
| 6.返回顶部 |
![]() |
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
Java-API-Package:org.springframwork.transaction.annotation的更多相关文章
- Elasticsearch 5.4.3实战--Java API调用:索引mapping创建
因为项目开发使用的是Java语言, 项目的开发架构是Spring MVC+ maven的jar包管理, 所以今天重点说说ES 5.4.3 的Java API的源码实战 1. pom.xml文件增加依 ...
- Elasticsearch 5.4.3实战--Java API调用:搜索建议
通常的搜索引擎,都会根据用户的输入,实时给予匹配的提示. 那么这个功能在elasticsearch中如何实现呢? Elasticsearch里设计了4种类别的Suggester,分别是: Term S ...
- Elasticsearch 5.4.3实战--Java API调用:批量写入数据
这个其实比较简单,直接上代码. 注意部分逻辑可以换成你自己的逻辑 package com.cs99lzzs.elasticsearch.service.imp; import java.sql.Tim ...
- Elasticsearch 5.4.3实战--Java API调用:搜索
ES有多种查询方式,我自己的业务是需要对多个字段进行查询,具体实现类代码如下. package com.cs99lzzs.elasticsearch.service.imp; import java. ...
- Java API研究:获取本地环境所有网卡及每个网卡的所有网络配置
一个网卡(不太标准,应该叫做一个网络接口,一个网卡是可以拥有多个网络接口的,如SoftAP)拥有一套网络配置:ip地址,子网掩码,网关,dns等等. 自java 1.6开始,提供了访问网络配置的一些接 ...
- java API 知识:截取特殊标识之前的字符串
一: double a = 23.36; String b = String.valueOf(a); String d = b.substring(, b.lastIndexOf(".&qu ...
- Elasticsearch的CRUD:REST与Java API
CRUD(Create, Retrieve, Update, Delete)是数据库系统的四种基本操作,分别表示创建.查询.更改.删除,俗称"增删改查".Elasticsearch ...
- HDFS基础和java api操作
1. 概括 适合一次写入多次查询情况,不支持并发写情况 通过hadoop shell 上传的文件存放在DataNode的block中,通过linux shell只能看见block,看不见文件(HDFS ...
- 在 IntelliJ IDEA 中配置 Spark(Java API) 运行环境
1. 新建Maven项目 初始Maven项目完成后,初始的配置(pom.xml)如下: 2. 配置Maven 向项目里新建Spark Core库 <?xml version="1.0& ...
随机推荐
- 10个超有趣的linux命令
本文展示了 10 个有趣的 Linux 动态命令,这些命令和实用功能无关,仅供娱乐!看完此文,你会对 Linux 有个全新的认识,谁说 IT 男就没有屌丝娱乐的一面呢?还等什么,就让我们开始看文章吧~ ...
- Java循环日期
//循环日期 Calendar ca = Calendar.getInstance(); Date curDate = startDate; while(curDate.compareTo(endDa ...
- Python之异常总结
一.异常错误 a.语法错误 错误一: if 错误二: def text: pass 错误三: print(sjds b.逻辑错误 #用户输入不完整(比如输入为空)或者输入非法(输入不是数字) num= ...
- eclipse - unresolved inclusion: <stdio.h>
在linux 上安装eclipse上配置好cdt后,新建项目时,当查找头文件时, 却出现如下错误提示: unresolved inclusion: <stdio.h> 这是c/c++标准库 ...
- Maven基础配置
重要网址 Maven主页:http://maven.apache.org/ Maven central repository:http://search.maven.org/ Maven aliyun ...
- 迭代式返回 IEnumerable<T>
private IEnumerable<PoliceForceViewModel> CreateResultList(IEnumerable<GPSData> gpsData) ...
- webservice中将dataset 压缩
http://blog.csdn.net/bodaowang/article/details/6889446 在webservice中将dataset序列化是我们经常遇到的问题,但是遇到很大的data ...
- python--匿名函数lambda
Python语言使用lambda关键字来创建匿名函数. 所谓匿名,即不再使用def语句这样标准的形式定义一个函数. lambda只是一个表达式,而不是一个代码块,函数体比def简单很多. 仅仅能在la ...
- EF 连接oracle 基础连接失败 问题解决
以此记录今天犯下的错误:
- golang的项目结构 相关知识
### 项目结构 ``` ├── bin │ ├── login │ └── main ├── pkg │ └── darwin_amd64 │ └── login │ └── a ...
