Tagged Questions

The interceptor design pattern allows logic to be "inserted" before, during or after the execution of a piece of code, such as a method.

learn more… | top users | synonyms

27
votes
10answers
593 views

Is there a way to intercept setters and getters in C#?

In both Ruby and PHP (and I guess other languages as well) there are some utility methods that are called whenever a property is set. ( *instance_variable_set* for Ruby, *__set* for PHP). So, let's ...
14
votes
2answers
3k views

NHibernate session management and lazy loading

I am having a heck of a time trying to figure out my session management woes in NHibernate. I am assuming that a lot of my trouble is due to lack of knowledge of IoC and AOP concepts; at least that is ...
7
votes
1answer
181 views

How do I use a circuit breaker?

I'm looking for ways to make remote calls to services out of my control until a connect is successful. I also don't want to simply set a timer where an action gets executed every n seconds/minutes ...
7
votes
1answer
2k views

NHibernate: difference Interceptor and Listener

Looking at all the possibilites of creation / update columns in NHibernate I mostly (Stackoverflow question, Ayende Rahien) see solutions with Listeners. The programmer who was programming this in ...
6
votes
2answers
801 views

How to enable Hibernate Interceptor when i have my Hibernate Transaction managed by Spring?

If i have a @OneToMany relationship with @Cascade(CascadeType.SAVE_UPDATE) as follows public class One { private Integer id; private List<Many> manyList = new ArrayList<Many>(); ...
5
votes
3answers
151 views

Where and how to use interceptors in web application?

I am interested in interceptor concept in recent times. I know that this concept is used in many libraries like NHibernate, Entity Framework and others. But i am interested in how to use this concept ...
4
votes
1answer
318 views

EJB interceptors are not called when using generic interfaces

Given the following code public interface Foo<T> { T get(); } @Remote public interface Bar extends Foo<String> { } @Stateless public class BarImpl implements Bar { ...
4
votes
1answer
187 views

How do you chain beforeInterceptors together?

I have a controller that inherits from a class with a beforeInterceptor. Here is my base class. class FooBase { def beforeInterceptor = [action: {parentInterceptor()}] def ...
4
votes
3answers
781 views

SEAM: Effective use of @BypassInterceptors?

I was wondering what advice the community could give me on the use of the @BypassInterceptors annotation when programming with Seam? I've been reading up on increasing Seam application performance, ...
4
votes
2answers
353 views

how to get authenticated user id from wcf in nhibernate

Hi I have implemented NHibernate custom context (ICurrentSessionContext). In this context I inject the NHibernate session so I have Session per call pattern setup. Ok, now I have made an interceptor ...
4
votes
2answers
799 views

How can I intercept execution of all the methods in a Java application using Groovy?

Is it possible to intercept all the methods called in a application? I'd like to do something with them, and then let them execute. I tried to override this behaviour in Object.metaClass.invokeMethod, ...
4
votes
2answers
711 views

NHibernate: Meaning of interceptors return value

I think this is an easy question, but my googling is weak on this. I had the problem described in the following link with regard to a generated ID and cascading: ...
3
votes
1answer
152 views

How to set objects on Spring 3.1 MVC controller from an interceptor?

I'm having a couple of issues related to interceptors since upgrading to 3.1. In version 3.0.x and earlier I used the following pattern to intercept Spring MVC controllers: Create an interface ...
3
votes
1answer
62 views

How to get the invoker name in EJB interceptor's lifecycle event method

I use Java EE 5. I wrote an interceptor for all EJBs with three methods for logging: public class DefaultInterceptor { public static final String PREFIX = "!!!!!!!!!Interceptor:"; ...
3
votes
2answers
334 views

Exception handler in Spring MVC

I want to create an exception handler which will intercept all controllers in my project. Is that possible to do? Looks like I have to put a handler method in each controller. Thanks for your help. I ...
3
votes
1answer
398 views

problem with i18n (internationalization) with Spring and Velocity

I am having a problem in setting up internationalization with Spring. Here is my config. <bean id="messageSource" ...
3
votes
2answers
2k views

Is it possible to wire a Spring MVC Interceptor using annotations?

Is it possible to wire a Spring MVC Interceptor using annotations and if so could someone provide me with an example of how to do so? By wire via annotation I am referring to doing as little in the ...
3
votes
1answer
346 views

Is there a better way of manipulating SOAP messages than Jaxws SOAP Handler Interceptor before the message gets to the container?

I am currently using the jaxws and apache CXF framework to create webservices using the top down approach. I am using the SOAP interceptors to add remove SOAP header elements, using SAAJ, before the ...
3
votes
2answers
4k views

Filters vs Interceptors in Struts 2

What's the difference, really, between filters and interceptors? I realize that interceptors fire before and after an action, recursively, and filters can be configured to fire on actions and on ...
3
votes
2answers
83 views

NHibernate inteceptor not called for changes in many-to-many set/list

I have an application that uses NHibrenate and I'm using an interceptor based solution for logging/auditing. Basically I have a class inheriting from EmptyInterceptor and overriding OnFlushDirty, ...
3
votes
1answer
245 views

Is is possible to intercept a static method on an object you don't own and did not create?

Referring to my possible answer to this question: http://stackoverflow.com/questions/2907535/how-would-you-audit-asp-net-membership-tables-while-recording-what-user-made-the/2911616#2911616 Is it ...
3
votes
2answers
530 views

Add objects to association in OnPreInsert, OnPreUpdate

I have an event listener (for Audit Logs) which needs to append audit log entries to the association of the object: public Company : IAuditable { // Other stuff removed for bravety IAuditLog ...
3
votes
1answer
299 views

In Castle Windsor, can I register a Interface component and get a proxy of the implementation?

Lets consider some cases: _windsor.Register(Component.For<IProductServices>().ImplementedBy<ProductServices>().Interceptors(typeof(SomeInterceptorType)); In this case, when I ask for a ...
3
votes
1answer
172 views

nhibernate dynamically bind a class

Hey, So I may be completely off the mark here but I'm still new to nhibernate so bare with me. I've read this article ...
3
votes
1answer
492 views

How might you implement the interceptor pattern on client-side (browser) AJAX request/response pairs?

Let me start with a real-life use case: DWR is getting confused when server-side authentication filters attempt to redirect AJAX requests to the login page due to an expired session. You'd like to ...
3
votes
2answers
2k views

NHibernate Interceptor - What is it

I am new in NHibernate, you can say I am almost at dummy level :( . What I want to know is that what is NHibernate Interceptor, and for what purpose does it serve in an application? Also, in this ...
2
votes
2answers
82 views

How to specify interceptor at inject time

I have some beans for which, in specific injections, I want to add a given interceptor. I was naïvely thinking there was something like a @Interceptors annotation that could allow me to write ...
2
votes
1answer
35 views

Intercepting methods called by the Startable facility with Castle Windsor 3.0

I'm using Castle Windsor 3.0. I have a component that should be started automatically after the registration phase. I would also like to intercept exceptions coming from it's Start/Stop methods and ...
2
votes
1answer
96 views

How to link Custom interceptor using Annotation

I had a custom interceptor in hand and I want it to be associated to an Action class using annotation. I had added interceptor-ref using the one declared in struts.xml but am getting exception as, ...
2
votes
1answer
108 views

Spring MVC 3: Find out locale within a filter

Environment: In my Spring MVC 3.0.5 application I try to add caching, html compression and some other things using a filter as described here: ...
2
votes
3answers
195 views

Spring HandlerInterceptor vs Filters

Interceptors in Spring can now be configured to be invoked only on certain URLs using <mvc:interceptors>. Filters can achieve same functionality(logging, security etc). So which one should be ...
2
votes
1answer
111 views

intercept method line by line

in c#, is there any practicable way to intercept a method line after line, at run-time? the specific application of interest would be dynamic logging: if something within a method body threw an ...
2
votes
2answers
60 views

intercept a control being rendered in Spring MVC

I am currently implementing the security layer for a spring MVC app using Spring Security. However I am interested in modifying the behavior of certain controls depending on the role of the user whos ...
2
votes
2answers
56 views

CDI: Intercepted method nested call from non-intercepted method of the same bean - should be invoked?

If I have methods public List<IrcEvent> getEventsByCriteria(IrcEventCriteria crit, boolean descending) { return getEventsByCriteria(crit, 0, Integer.MAX_VALUE, descending); } ...
2
votes
1answer
494 views

Struts 2 action variables not populated after interceptor's invocation.invoke()

My Problem is that the action's variables are not being populated after it is triggered from the interceptor using invocation.invoke. What i know is that before using an interceptor , it worked ...
2
votes
1answer
564 views

Spring 3 mvc:resources causing mvc:interceptors to run multiple times

in Spring 3 MVC dispather-servlet.xml with the configuration below, it seems like everytime a .js file is called the interceptor is kicked off. <mvc:interceptors> <bean ...
2
votes
1answer
131 views

WAS 7.0 - default interceptors in MDBs

I'm having problems advising MDBs with default interceptors in Websphere 7.0 AS. I have tested the same code using Glassfish AS and it works fine. The strange thing is that WAS interceptor is applied ...
2
votes
1answer
198 views

Reflection-based injection vs. dynamic proxy: Practical considerations?

I'm working on some framework-ish code designed to execute a huge number of operations (hundreds of thousands), all of which use the same basic components, but need to accept operation-specific ...
2
votes
1answer
2k views

Proper mvc:interceptor configuration in Spring

i have kind of a problem. I need to call on each request postHandle method in this interceptor: public class DiMenuInterceptor extends HandlerInterceptorAdapter { @Autowired private ...
2
votes
2answers
214 views

Intercepting queries to a database

So I'm trying to intercept calls made to a database. Right now I have a java program which listens for notifications (calls made by various programs). I'm trying to extend this to analyse queries made ...
2
votes
1answer
183 views

Ninject: Possible to use injection constructor when type is being proxied for AoP?

I'm doing a project ground up using Ninject 2 and one question bugs me: If you are to intercept methods on your type, you need to wrap it into proxy (castle dynamic proxy to be specific). Unless said ...
2
votes
1answer
240 views

Configuring interceptor in Spring

I am using Spring 3.0 I need to write an interceptor which intercepts all urls. in my application I wrote one intercptor public class HelloInterceptor extends HandlerInterceptorAdapter { how ...
2
votes
1answer
334 views

How to intercept static methods in Spring?

Subject line basically says it all. I have a static method I want to intercept so that around advice can be applied to it. I can get this to work with any non-static methods but I'm unsure how to ...
2
votes
2answers
509 views

Which one to use: OpenSessionInViewInterceptor or OpenSessionInViewFilter?

I'm having a hard time deciding which "Open Session In View" to use: configuring OpenSessionInViewInterceptor using Spring MVC's interceptor with or configuring OpenSessionInViewFilter in web.xml's ...
2
votes
1answer
979 views

Struts 2 how to display messages saved in a Interceptor which would redirec to another action?

in my interceptor, if user doesn't have enough right, there would be a warn message: public String intercept(ActionInvocation invocation) throws Exception { ActionContext actionContext = ...
2
votes
1answer
582 views

NHibernate AssertException: Interceptor.OnPrepareStatement(SqlString) returned null or empty SqlString

I am trying to switch a table from being a many-to-one mapping to being many-to-many with an intermediate mapping table. However, when I switched it over and tried to do a query on it with NHibernate, ...
2
votes
1answer
310 views

How can I check the http response status code in a Spring Interceptor?

It seems that the HttpServletResponse parameter passed to HandlerInterceptor#postHandle is write only: there is no getStatus() method there. Any idea about how to find out which HttpStatus was set ...
2
votes
3answers
711 views

CDI: Using Interceptors across different modules / bean archives

My Java EE 6 application consists of a war and an ejb module packaged in ear file. I'm using CDI for DI (i.e. I have a beans.xml file in both modules). I want to use a logging interceptor that is ...
2
votes
1answer
1k views

Hibernate Interceptors or Events for Audit Trail?

I record a history of all changes to some entities and am about to implement a mechanism similar to Envers to take care of this automatically. My question is whether to use Hibernate interceptors or ...
2
votes
2answers
219 views

CDI call interceptor annotated method within same instance

here is my DAO implementation, i will load the whole table and cached in memory for a certain period of time @ApplicationScoped public class DataAccessFacade { @Inject private EntityManager ...

1 2 3 4 5