春季4 @Transactional和@Aspect

时间:2015-04-23 13:36:43

标签: spring transactions aspectj

我有一个拦截器类来监视对象的创建。我希望在实际的create方法服务之前调用此拦截器以注入当前用户/日期。

/**
 * Author: plalonde
 * When: 2015-03-04
 */
@Aspect
public class IdentityInterceptor {
    /**
     * Injection de l'usagé actuellement en session dans l'entité.
     *
     * @param entity L'entité dans laquelle les informations de l'usagé doivent être injectée.
     */
    @Before("execution(* com.t3e.persistence.service.CrudService.create(..)) && args(entity)")
    public void giveOwnership(final TraceableDto entity) {
        Authentication authentication = SecurityContextHolder.getContext().getAuthentication();

        entity.setCreationUserId(authentication.getName());
        entity.setCreationDate(new Date());
        entity.setLastModificationUserId(authentication.getName());
        entity.setLastModificationDate(new Date());
    }
}


/**
 * Author: plalonde
 * When: 2015-04-22
 */
@Service
@Transactional(readOnly = true)
public class LocalWatsonLicenseService implements WatsonLicenseService {
    @Autowired
    private WatsonLicenseRepository repository;

    /**
     * Création d'une licence.
     *
     * @param watsonLicenseDetails Le détails de la licence à créer.
     * @return L'instance de la licence mise à jour.
     */
    @Transactional
    @Override
    public WatsonLicenseDetails create(final WatsonLicenseDetails watsonLicenseDetails) {
        return repository.create(watsonLicenseDetails);
    }

}

/**
 * Author: plalonde
 * When: 2015-04-22
 */
public interface WatsonLicenseService extends CrudService<WatsonLicenseDetails> {
}

我的拦截器永远不会被调用,我想知道它是否因为服务的方法是@Transctional?

看起来Aspect配置得很好,因为我有其他服务方法,其中一切都像预期的那样。

我尝试寻找文档,但我只获得处理与Aspect交易的帖子,但这不是我的情况。

我的包装方法是应该返回更新后的值还是在切入点中传递并处理它?<​​/ p>

[编辑]

这是拦截器的声明方式

/**
 * Author: plalonde
 * When: 2015-04-22
 */
@Configuration
@EnableTransactionManagement
class DatabaseConfig {
    @Value("${dataSource.driverClassName}")
    private String driver;
    @Value("${dataSource.url}")
    private String url;
    @Value("${dataSource.username}")
    private String username;
    @Value("${dataSource.password}")
    private String password;

    @Bean
    public DataSource configureDataSource() {
        DriverManagerDataSource dmds = new DriverManagerDataSource(url, username, password);
        dmds.setDriverClassName(driver);

        return dmds;
    }

    @Bean
    public NamedParameterJdbcTemplate configureTemplate(final DataSource dataSource) {
        return new NamedParameterJdbcTemplate(dataSource);
    }

    @Bean
    public PlatformTransactionManager transactionManager(final DataSource dataSource) {
        return new DataSourceTransactionManager(dataSource);
    }

    @Bean
    public IdentityInterceptor createInterceptor() {
        return new IdentityInterceptor();
    }
}

1 个答案:

答案 0 :(得分:0)

正如在M.Deinum评论中提到的,我在配置类中忘记了@EnableAspectJAutoProxy,这解决了这个问题。

在允许时将此标记为正确答案。