没有匹配的工厂方法发现:工厂方法“aspectOf()”(No matching factory m

2019-06-27 10:56发布

我有以下方面:

package trc.suivi.aspects;

import java.util.Date;

import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;

import trc.suivi.domain.EvenementPli;
import trc.suivi.domain.Pli;
import trc.suivi.domain.TypeEvenement;
import trc.suivi.repository.EvenementPliRepository;

public aspect PliEventManagerAspect {

    private static final Logger log = Logger.getLogger(PliEventManagerAspect.class);

    @Autowired
    private EvenementPliRepository evenementPliRepository;

    public PliEventManagerAspect() {
    }

    pointcut catchEMPersist(Pli pli) : (execution(* trc.suivi.repository.PliRepository+.save(*)) && args(pli));
    pointcut catchEMPersist() : (execution(trc.suivi.domain.Pli.persist()));

    after(Pli pli) returning: catchEMPersist(pli) {
        log.debug("catchEMPersist(pli)");
        EvenementPli ev = new EvenementPli();
        ev.setDateCreation(new Date());
        ev.setType(TypeEvenement.creation);
        ev.setMessage("Création d'un pli");
        evenementPliRepository.save(ev);        
    }

    after() returning: catchEMPersist() {
        log.debug("catchEMPersist()");
        EvenementPli ev = new EvenementPli();
        ev.setDateCreation(new Date());
        ev.setType(TypeEvenement.creation);
        ev.setMessage("Création d'un pli");
        evenementPliRepository.save(ev);        
    }

}

而下面的XML配置:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
    <aop:aspectj-autoproxy />
    <bean class="trc.suivi.aspects.PliEventManagerAspect" factory-method="aspectOf"/>
 </beans>

当我开始我的应用程序,我得到这样的:

No matching factory method found: factory method 'aspectOf()'. Check that a method with the specified name exists and that it is static.

我和我敢肯定这个配置之前工作的罚款相当傻眼。 更重要的是,这是一个Spring Roo的项目,所以所有的AspectJ的配置应该罚款。

任何人都可以请帮助?

Answer 1:

这可能是因为您方面尚未无论出于何种原因编译,你可以尝试加入更多的诊断你的AspectJ织入插件,并看到正在打印在控制台上的东西,沿着这些线路:

<configuration>
    <outxml>true</outxml>
    <showWeaveInfo>false</showWeaveInfo>
    <Xlint>warning</Xlint>
    <verbose>true</verbose>
                ...
</configuration>

此外,由于使用的是原始的AspectJ你并不真的需要使用<aop:aspectj-autoproxy/>这是用来触发Spring AOP的。



Answer 2:

我有同样的错误信息上来。 我解决它通过在rozky的答案在这里寻找: http://forum.springsource.org/showthread.php?79928-NoSuchMethodError-Aspect-aspectOf%28%29

为了记录回答的缘故,我在这里把它抄了:

rozky写道:

嗨,

我有同样的问题。 我发现,织布也需要被启用的文件aop.xml中的方面类。 在你的情况下,(见突出部分):

 <!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd"> <aspectj> <weaver options="-verbose -showWeaveInfo -debug"> <!-- only weave classes in our application-specific packages --> <include within="com.mypackage.*"/> <include within="foo.*"/> <!-- this is the highlighted line --> </weaver> <aspects> <!-- weave in just this aspect --> <aspect name="foo.ProfilingAspect"/> </aspects> </aspectj> 

希望能帮助到你。



文章来源: No matching factory method found: factory method 'aspectOf()'