Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple Main class like this.

class Main{
 public static void main(String args[]){
  String str = "Hello World!!";
  <some function with argument as str>
 }
}

Now I want to create an aspect which will crop this string or append anything into this string and to send the changed string into the function.And do something with the rest of the string.So,

1) Is it possible to do it using aspectJ LTW in java.

2) If yes,Please give me an insight on how to do this.

Thanks in advance.

share|improve this question

2 Answers

up vote 0 down vote accepted

You could use something like this:

public aspect MyAppend {
    around(String str) : call (* someFunction(String)) && args(str) {
      proceed(str + " My appended string");
    }
}
share|improve this answer

you can use Spring AOP

share|improve this answer
1  
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Chris Gerken Nov 13 '12 at 3:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.