Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] ServiceConfigurationError Error with AspectJ Load-Time Weaving

this happens also if I have an aspect which has nothing to do with the code of the application :(

So the situation is that I have a AspectJ Load-Time Weaving which calls a normal Java application. The launchconfiguration includes in its LTW Aspectpath the one AspectJ project, which itself has no in or outgoing depencendies



----- Ursprüngliche Message -----
Von: Andreas Joecker <sielesen@xxxxxxxx>
An: "aspectj-users@xxxxxxxxxxx" <aspectj-users@xxxxxxxxxxx>
Cc: 
Gesendet: 14:06 Mittwoch, 14.September 2011 
Betreff: Re: [aspectj-users] ServiceConfigurationError Error with AspectJ Load-Time Weaving

not at all.

public aspect ParametersInterceptor {
    pointcut interceptString():
        execution (* PropertiesReader.parseGroups(..));
    
    after() returning: interceptString() {
        System.out.println("Haha what did you do ?");
    }
}

whereas PropetiesReader is an arbitrary class of my application. Its a final class in no inheritance mechanism. it just reads from a properties file.



----- Ursprüngliche Message -----
Von: oroger <olivier.roger@xxxxxxxxx>
An: aspectj-users@xxxxxxxxxxx
Cc: 
Gesendet: 13:46 Mittwoch, 14.September 2011 
Betreff: Re: [aspectj-users] ServiceConfigurationError Error with AspectJ Load-Time Weaving

Is you aspect somehow related to
com.sun.media.imageioimpl.stream.ChannelImageOutputStreamSpi ?

--
View this message in context: http://aspectj.2085585.n4.nabble.com/ServiceConfigurationError-Error-with-AspectJ-Load-Time-Weaving-tp3812526p3812565.html
Sent from the AspectJ - users mailing list archive at Nabble.com.
_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users

_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users



Back to the top