📄 remoteotherdao.java
字号:
package com.foshanshop.ejb3;
import com.foshanshop.ejb3.bean.Product;
public interface RemoteOtherDAO{
/**
* 系统异常
*/
public void systemException();
/**
* 事务属性TransactionAttributeType.REQUIRED
*/
public void required();
/**
* 事务属性TransactionAttributeType.NOT_SUPPORTED
*/
public Product notSupported(int productid);
/**
* 事务属性TransactionAttributeType.REQUIRES_NEW
*/
public void requirednew();
/**
* 事务属性TransactionAttributeType.SUPPORTS
*/
public Product support(int productid);
/**
* 事务属性TransactionAttributeType.MANDATORY
*/
public void mandatory();
/**
* 事务属性TransactionAttributeType.NEVER
*/
public Product never(int productid);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -