- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个Spring MVC应用程序,其中的所有逻辑都与单个Java包(控制器,服务,存储库,DTO和资源)中的单个业务相关。我通过使表示,服务和持久层之间的所有方法都私有(不使用任何接口)来实现这一点。注意:层分离是通过具有可选依赖项的Maven模块强制执行的(表示层看不到持久层)。
但是,存储库也应该是@Transactional
,并且使用Spring的默认值(添加spring-tx
Maven依赖项+声明@EnableTransactionManagement
+创建new DataSourceTransactionManager(dataSource)
@Bean
)是不够的:如果存储库没有至少一个公共方法(在集成测试中使用AopUtils.isAopProxy()
对此进行检查)。
使用基于Maven +基于注释的Spring + Tomcat解决此问题的最直接方法(最小示例)是什么? (我听说过AspectJ并愿意在其他解决方案满足需要时避免使用它,因为AspectJ看起来设置复杂且与Lombok不兼容-但我想我可以用@AutoValue,自定义方面,Spring Roo等替换它。 )
编辑:我尝试使用AspectJ并可以到目前为止仅使用package-private方法(使用编译时编织)将方面(仅使用@Aspect
即不涉及任何事务)添加到package-private类中。我目前在尝试对@Transactional
做同样的事情。当我公开该类及其方法并定义@EnableTransactionalManagement
时,它就起作用了(getCurrentTransactionName()
显示了一些东西)。但是,一旦我更改为@EnableTransactionalManagement(mode = ASPECTJ)
,即使该类及其方法保持公共状态,它也不再起作用(getCurrentTransactionName()
显示null
)。注意:使用AspectJ模式时,proxyTargetClass
不相关。
EDIT2:好的,我设法通过AspectJ来解决此问题,包括编译时和加载时的编织。我缺少的关键信息是 AnnotationTransactionAspect
的JavaDoc:package-private方法不会从类注释中继承事务信息,因此必须将@Transactional
放在package-private方法本身上。
最佳答案
首先,警告:这是骇客,是仿制药的噩梦!我认为,要满足您仅在存储库中仅使用包私有方法的要求,就太麻烦了。
首先,定义一个可以使用的抽象实体:
package reachable.from.everywhere;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
@MappedSuperclass
public abstract class AbstractEntity<K> {
@Id
private K id;
// TODO other attributes common to all entities & JPA annotations
public K getId() {
return this.id;
}
// TODO hashCode() and equals() based on id
}
package reachable.from.everywhere;
import java.lang.reflect.ParameterizedType;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
public abstract class AbstractRepo<
K, // key
E extends AbstractEntity<K>, // entity
T extends AbstractRepo.SpringAbstractRepo<K, E, U>, // Spring repo
U extends AbstractRepo<K, E, T, U>> { // self type
@Autowired
private ApplicationContext context;
private T delegate;
@SuppressWarnings("unchecked")
@PostConstruct
private void init() {
ParameterizedType type =
(ParameterizedType) this.getClass().getGenericSuperclass();
// Spring repo is inferred from 3rd param type
Class<T> delegateClass = (Class<T>) type.getActualTypeArguments()[2];
// get an instance of the matching Spring repo
this.delegate = this.context.getBean(delegateClass);
}
protected T repo() {
return this.delegate;
}
protected static abstract class SpringAbstractRepo<K, E, U> {
protected final Class<E> entityClass;
// force subclasses to invoke this constructor
// receives an instance of the enclosing class
// this is just for type inference and also
// because Spring needs subclasses to have
// a constructor that receives the enclosing class
@SuppressWarnings("unchecked")
protected SpringAbstractRepo(U outerRepo) {
ParameterizedType type =
(ParameterizedType) this.getClass().getGenericSuperclass();
// Spring repo is inferred from 3rd param type
this.entityClass = (Class<E>) type.getActualTypeArguments()[1];
}
public E load(K id) {
// this method will be forced to be transactional!
E entity = ...;
// TODO load entity with key = id from database
return entity;
}
// TODO other basic operations
}
}
AbstractRepo
使用4种泛型类型进行了参数化:
AbstractRepo
的子类的类型private
@PostConstruct
方法中,我们获得第三个泛型类型param
T
的类,这是将通过内部类向Spring公开的存储库的类型。我们需要这个
Class<T>
,以便我们可以要求Spring给我们提供此类的bean。然后,我们将此bean分配给
delegate
属性,即
private
,并将通过
protected
repo()
方法进行访问。
Session
),或者通过反射来创建实体的实例,并用从数据库中检索到的数据填充实体(可能是基本的JDBC方法或Spring JDBC)。
load()
,它接收要加载的实体的ID(即
K
类型的ID),并返回安全键入的实体。
package sample;
import reachable.from.everywhere.AbstractEntity;
public class SampleEntity
extends AbstractEntity<Long> {
private String data;
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
}
data
字段的示例实体,其ID为
Long
类型。
SampleRepo
实例的具体
SampleEntity
:
package sample;
import javax.transaction.Transactional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Repository;
import reachable.from.everywhere.AbstractRepo;
// annotation needed to detect inner class bean
@Component
public class SampleRepo
extends AbstractRepo<
Long, // key
SampleEntity, // entity with id of type Long
SampleRepo.SampleSpringRepo, // Spring concrete repo
SampleRepo> { // self type
// here's your package-private method
String method(String s) {
return this.repo().method(s);
}
// here's another package-private method
String anotherMethod(String s) {
return this.repo().anotherMethod(s);
}
// can't be public
// otherwise would be visible from other packages
@Repository
@Transactional
class SampleSpringRepo
extends AbstractRepo.SpringAbstractRepo<
Long, // same as enclosing class 1st param
SampleEntity, // same as enclosing class 2nd param
SampleRepo> { // same as enclosing class 4th param
// constructor and annotation needed for proxying
@Autowired
public SampleSpringRepo(SampleRepo myRepo) {
super(myRepo);
}
public String method(String arg) {
// transactional method
return "method - within transaction - " + arg;
}
public String anotherMethod(String arg) {
// transactional method
return "anotherMethod - within transaction - " + arg;
}
}
}
SampleRepo
批注,此
@Component
可用于Spring组件扫描。它是
public
,尽管根据您的要求,它的方法都是包私有的。
SampleRepo
类中未实现这些程序包专用方法。相反,它们是通过继承的
protected
repo()
方法委托给要由Spring扫描的内部类的。
public
。它的范围是包专用的,因此它对于包外部的类不可见。但是,它的方法是
public
,因此Spring可以使用代理对其进行拦截。根据您的需要,此内部类用
@Repository
和
@Transactional
注释。它扩展
AbstractRepo.SpringAbstractRepo
内部类有两个原因:
load()
)。 @Autowired
。否则,Spring将无法加载应用程序。由于AbstractRepo.SpringAbstractRepo
abstract
内部类只有一个构造函数,并且此构造函数接受一个参数,该参数必须是其AbstractRepo
abstract
封闭类的后代,因此AbstractRepo.SpringAbstractRepo
内部类的每个后代都需要在其自己的构造函数中使用super()
,并传递一个实例。相应的封闭类。这是由泛型强制执行的,因此,如果尝试传递错误类型的参数,则会出现编译错误。 abstract
类不是必须的。您可以完全避免使用它们以及所有这些泛型的东西,尽管您最终将拥有重复的代码。
关于java - Spring事务性包私有(private)方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28962770/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!