[aspectj-users] AspectJ LTW problem with JMX

2013-07-15 Thread Tugdual JULLIEN
Hello everybody, When I start my application (console) with the weaver agent, without JMX, everything is fine, with JMX the aspect configuration is not found. I use Aspectj 1.7.3 (I tried version 1.7.0 and 1.7.1). The aspect configuration is done by the file META-INF/aop.xml which contains the

[aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread pai
Hi! folk~ I have a question about behaviours of new constructor added by AspectJ ITD I am currently applying AspectJ to our project, and I found a behavior which is a bit strange to me. **Q1:** I added a new constructor to my current class with inter-type declaration, and found that the class's

Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread Ramnivas Laddad
Replied on stackoverflow. On Mon, Jul 15, 2013 at 8:03 AM, pai wrote: > Hi! folk~ I have a question about behaviours of new constructor added by > AspectJ ITD > > > I am currently applying AspectJ to our project, and I found a behavior > which > is a bit strange to me. > > **Q1:** > I added a n

Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread pai
Hi! thanks for the response. But it seems you have some misunderstanding about my questions. So I made some modifications to make it clear. Thank you for the help :) I am currently applying AspectJ to our project, and I found a behavior which is a bit strange to me. *Q1:* I added a new const

Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread Alexander Kriegisch
Hello. With all due respect: Ramnivas has answered the question before on SO quite patiently. So as not to waste any more of his precious time I recommend you to - read his answer, - think again, especially about Q1 and - learn some basic Java. Sorry if it sounds rude, but you seem not to app

Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread pai
Hi Alex! I'm sorry that you think I don't appreciate his answer. But actually, I do appreciate for your kind response. That's why I think I may not state my questions clear enough for people to understand clearly. It's my mistake. It seems my questions was misunderstood. I am quite familiar

Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread Ramnivas Laddad
Replied again (appended to original answer). Hopefully, this resolves your issue. On Mon, Jul 15, 2013 at 12:27 PM, pai wrote: > Hi Alex! > > I'm sorry that you think I don't appreciate his answer. > > But actually, I do appreciate for your kind response. > > That's why I think I may not state

Re: [aspectj-users] Behaviours of new constructor added by AspectJ ITD

2013-07-15 Thread pai
Dear ramnivas: Thank you for your detailed answer, but I have some follow-up questions. As regard to your answers. Q1: public class Child { public String name = "John"; public Child(String desc) { // TODO Auto-generated constructor stub } } If I new the Child with its or