0
votes
0answers
36 views

skip aspect when running Junit test - maven test

I have aspects in my spring mvc project. It uses Before annotation to check authorization access before every controller method. Now I need to writes some JUnit Test cases for Spring MVC controller ...
0
votes
1answer
50 views

Capture successful login with AspectJ and Spring Security

i'm using spring security and AspectJ to log application's behavior. I need to capture a successful login and log it. My spring security configuration: <security:http auto-config="true" ...
6
votes
2answers
121 views

Web Data Streaming in Java EE

we have a design like this : our installed service upon tomcat has a method getDatabaseData(String request) (RMI Client) which receive data from database using (RMI Server implementation) existing ...
1
vote
2answers
229 views

logging with AOP in spring?

I am new to spring in my office . So there is no guidance for me. I need to implement the logging with the AOP using the log4j. I have implemented the logging without AOP in basic spring MVC ...
0
votes
0answers
41 views

The Roo shell does not generate ITDs for my @RooConversionService

I have added the following class in my Roo app: /** * A central place to register application converters and formatters. */ @RooConversionService public class ...
0
votes
2answers
83 views

Using Spring AOP 3.1.0 to set service instance using method argument

Hi i am new to Annotation and Spring AOP. below is what i am trying to achieve public interface Service { public void process(String ServiceName, Bean bean); } public class ServiceImpl1 ...
0
votes
1answer
148 views

Problems whit AspecJ AOP Configuration in Spring : java.lang.IllegalArgumentException: error at ::0 can't find referenced pointcut

I am studying AspectJ annotation to configure AOP in Spring Framework reading this article: http://www.tutorialspoint.com/spring/aspectj_based_aop_appoach.htm Differently from this article I am not ...
0
votes
0answers
45 views

how can annotated aspectJ realize AOP on annotated controller in Spring mvc?

I've searched a lot of methods from google, but none of them worked well! My code snippets are as follows: Annotated Controller: @Controller @RequestMapping("/user") public class UserController { ...
1
vote
0answers
133 views

Spring - Injecting resources in per-scoped (perthis - pertarget) aspect

In my Spring web application, I'm trying to inject a resource in a perthis-scoped AspectJ aspect. Injection works well using a singleton aspect, but fails using a perthis scoped one. I tried using ...
0
votes
0answers
92 views

Spring Aspectj instantiation models in webapp

I've a Spring web application and I'm trying to add some aspect to my service objects. The goal is to maintain aspect's state only through a single request scope, and to obtain a reference to aspect ...
0
votes
1answer
123 views

SpringAOP, load-time-weaver, strange behavior

in this moment i am facing one problem and really dont know what i am doing wrong. I am coding logging for my webservice using Spring framework and AOP in @AspectJ style. I got two bundles - ...
0
votes
0answers
28 views

SpringAOP - weaving between bundles

In my project, which is SpringMVC web-application, i want to get a logging to work and I want to do it in AOP style. But now i got stuck in this situation: I have implemented LogAspect in bundle ...
1
vote
1answer
908 views

How to create an interceptor for annotation @Controller

I joined an existing project who use 2 mechanisms for the front-end with spring mvc: A) controllers classes extends org.springframework.web.servlet.mvc.SimpleFormController B) controllers classes ...
1
vote
0answers
87 views

How to register aspect in spring application on non-spring-managed object

I have a spring mvc application running in JBoss. I am using Spring AOP all over the place (using Annotations); they are working perfectly. I want, however, to also create an aspect for a couple of ...
1
vote
2answers
543 views

NoClassDefFoundError with spring cache and aspectj

I am getting this error in my spring webapp (spring 3.1), and I don't know why. org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is ...
0
votes
2answers
333 views

How to put the HttpSession into an Aspect class using Spring?

I have an aspect class used to log the application, and I need information that's in the user session. Is there any way to provide the HttpSession for the aspect, or its attributes? Thanks for any ...
1
vote
3answers
767 views

Customize save() method in Spring Roo

I've made an application with Spring Roo (I'm still a newbie) and I'd like to do some processing after the entity is persisted. I've set up the application with Service and DAO layer. In the service I ...
4
votes
1answer
2k views

Autowired dependency not injected in Aspect in Spring MVC

I am not able to @Autowire the Service Layer Instance in Aspect. In Aspect the reference to the @Autowired bean is NULL and it throws NullPointerException. Any help will be much appreciated. I think, ...
1
vote
2answers
841 views

AspectJ Injection in Vaadin working only after I Generate the SerialVersionID

Hi I am using Spring 3 + Spring MVC (half of the site) + Vaadin + AspectJ + JPA2 + Spring Security My problem is that Spring creates all my Repositories and I would like to share those with Vaadin ...
0
votes
1answer
1k views

What is the correct syntax to include multiple `context:exclude-filter`s?

What is the correct syntax to inlcude multiple context:exclude-filters? I'm using this but I don't know if it works: <?xml version="1.0" encoding="UTF-8"?> <beans ...
2
votes
1answer
901 views

Spring AOP: Aspect triggering when configuration is in Servlet context, but not application context?

I'm using Spring 3.0.x with Spring AOP. So, I have the following Aspect: @Aspect public class TestAspect { @Pointcut(value="@annotation(Bar)", argNames="Bar") public void pointCutMethod(Bar ...
0
votes
1answer
650 views

Spring MVC + Before Advice check security

I'm testing Spring AOP framework and have the following question. I have the following code: package danny.test.controllers; @Controller public class MyController{ @Autowired private DaoService ...
3
votes
1answer
582 views

Petclinic spring-mvc example not building

I just co https://src.springframework.org/svn/spring-samples/ and tried to build petclinic. I did: mvn clean install mvn eclipse:eclipse I imported to eclipse but: The import org.aspectj cannot ...
8
votes
2answers
6k views

Spring AOP Advice on Annotated Controllers

I am trying to use AOP to do some processing after an annotated controller. Everything is running with no errors, but the advice is not being executed. Here is the controller code: @Controller ...
1
vote
1answer
1k views

Trying to match an AspectJ pointcut signature for any methods containing a variable

I want to create a pointcut that matches any method in my Web controller that contains a ModelMap: pointcut addMenu(ModelMap modelMap) : execution (public String example.web.MyController.*(..)) ...