0
votes
1answer
15 views

AOP based on annotation method

I am adding an aspect over methods of my controller class my entry in aop.xml file <concrete-aspect name="com.test.aop.access._AccessAspect_" extends="com.test.aop.access.AccessAspect"> ...
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
46 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
3answers
226 views

Spring AOP (Aspect) Not executing

I ams using Spring 2.5.6, asm 1.5.3, aspectjrt/aspectjweaver 1.6.1, cglib 2.1_3 In my Web based Spring application I have following class: package uk.co.txttools.aspects; @Aspect public class ...
2
votes
3answers
528 views

Implementing dynamic menu for Spring MVC/AOP application

I wish to implement dynamically changeable menu (updating whenever annotated method or controller added) for my Spring MVC application. What i want is to introduce new annotation ...
0
votes
0answers
62 views

Why am I losing my @PathVariable if my Controller method is intercepted by @AfterReturning?

My code is as follows: @Controller public interface SomeController { @RequestMapping("/{arg}") public ModelAndView someMethod(String arg); } @Component public class SomeControllerImpl { ...
1
vote
1answer
82 views

@Secured annotation on a class does not apply to parent class methods

I have an abstract class (the parent class) with some shared @RequestMapping methods and there are some @Controller classes implementing it (the sub-classes). I annotated the sub-classes with ...
0
votes
2answers
734 views

Intercepting the @responsebody in spring mvc

I have a Spring MVC web application with conroller like below : @Controller public class ActionRestController { @RequestMapping(value = "/list", method = GET) @ResponseBody public List<Action> ...
2
votes
1answer
248 views

Spring MVC - using Poincuts to fill Spring MVC partials with dynamic data

How do you fill reusable partials (like the header) in a Spring MVC web app with dynamic data like username every time a certain group of controllers are called (page controllers) but not for others ...
0
votes
2answers
111 views

Do AOP violate layered architecture for enterprise apps?

The question(as stated in the title) comes to me as recently i was looking at Spring MVC 3.1 with annotation support and also considering DDD for an upcoming project. In the new Spring any POJO with ...
1
vote
1answer
346 views

BookMark Redirection using AOP-Spring interceptor

I was trying to write an interceptor using spring AOP.The interceptor will find if a request URL is a bookmark,if so will redirect to the authentication page. Code Snippet: public Object ...
0
votes
1answer
574 views

Spring MVC - How to get list of @RequestMethod method parameters (possibly by @RequestParam attribute)

I have a Spring MVC controller with the following method: @RequestMapping(value = {"/filter"}, method = RequestMethod.GET) @ResponseBody public List<MetricType> getMetricTypes( ...
1
vote
1answer
685 views

Spring MVC MultiActionController and Apache Shiro

I am trying to use Apache Shiro with Spring MVC. The controllers we expose (and want to secure) extend MultiActionController. I have configured Apache Shiro for Spring the way they describe it here: ...
1
vote
1answer
225 views

How to execute some code with AOP before each method of a Spring controller and have the Method object

Given a method in a Spring controller, I'd like to execute a "before" handler. I tried some AspectJ code to do that but I can't work it out. What I'd like is to obtain the target Method object so that ...
3
votes
1answer
673 views

Aop Annotation at Spring Controllers Doesn't Work

I have made an annotation for aop. When I use it at any method rather than controller methods it works well. However when I use it at my controller's methods my controller stops working. It starts to ...
2
votes
2answers
3k views

Exception handler for REST controller in spring

I want to handle exceptions so the URL information is automatically shown to the client. Is there an easy way to do this? <bean id="outboundExceptionAdapter" ...
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
1answer
1k views

Troubleshooting session-scoped bean with aop:scoped-proxy

In my Spring 3 project I have the following bean definition <bean name="account" class="sample.model.Account" scope="session"> <aop:scoped-proxy proxy-target-class="true" /> ...
0
votes
2answers
561 views

Passing a password for methods for Spring MVC Controller - AOP or Spring Security?

I have been using Spring MVC for a short while now with annotated controllers for JSP pages. I have a class similar to this: import org.springframework.stereotype.Controller; import ...
1
vote
1answer
214 views

Is it possible to use asm-x.x.jar in Google App Engine when using Spring Framework?

If I include asm-x.x.jar in my Web application, I get errors. Errors can be removed by removing asm-x.x.jar from the classpath. But I need to use Aspects in my app, so I have to have asm-x.x.jar in my ...
3
votes
2answers
701 views

Intercept calls to HttpSession in Tomcat 6

What's the recommended approach to intercepting session.getAttribute() and session.setAttribute()? This is in a Spring based application so something AOP-based would be great. I'd like to avoid having ...
1
vote
1answer
426 views

Spring MVC: Insert values into all my ModelAndView s

I have a mid-size Spring application and I want to insert key/value pairs into all my ModelAndViews in a cross cutting fashion (much like AOP). The motivation is to add all kind of data to all my ...
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 ...
2
votes
2answers
850 views

how to call service inside service layer

in my service layer public class MyServiceLayerImpl{ public void method1(){ MyServicelayer.method(); //is this correct? } public void method2(){ } @Autowired ...
7
votes
1answer
4k views

How does one manage object pooling in Spring?

It's my understanding that in Spring, all objects are treated by default as singletons. If singleton is set to false, then a new object will be served at each request. But what if I wanted to pool ...