8
votes
2answers
895 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 …
2
votes
2answers
169 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, …
2
votes
1answer
516 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 …
1
vote
1answer
17 views
SEAM: Component “disinjected” “too soon” in interceptor?
Hello,
Let's say I have the following interceptor in a SEAM app:
public class MyInterceptor {
@In
private Monitor myMonitor;
@AroundInvoke
public Object aroundInvoke(InvocationContext ctx) …
1
vote
1answer
31 views
Castle Windsor Interceptor for private/protected method
Hi all,
Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?
1
vote
1answer
29 views
Update father on interceptor
My model:
public class Father {
Set<Son> sons = new HashSet<Son>();
String name = null;
Date lastSonModifyDate = null;
// ... other fields and setters/getters
}
public class …
1
vote
1answer
71 views
Seam - Interceptors
Hi all,
I want to intercept all method invocations to all seam components to see if that would help in logging exceptions. I was thinking that I could do this by getting the list of all components …
1
vote
8answers
266 views
How would you intercept all Exceptions?
What is according to you the simplest way to intercept all exceptions in a Java application?
Would AOP be needed to provide this kind of functionality or can it be done with dynamic proxies or is …
0
votes
0answers
10 views
Spring mvc request data interceptor.
I have following controller methods signature:
@RequestMapping(value = "/markProductDone")
public String markProductDone(@RequestParam(value = "data") JsonObject jsonData)
where request data …
0
votes
0answers
77 views
NHibernate: Lazy load a collection of data from a service, not the database
My domain objects support custom fields that are stored in such a way that requires metadata and logic to be applied before their values can be stored and retrieved.
I already have a Custom Field …
0
votes
1answer
114 views
Hibernate interceptor: entity intercepted when a collection element updated
Hi all.
I need to know how can I set Hibernate (...) to achieve the following issue:
I have a bidirectional (composition) one-to-many association (a.bs is a Set object and b.a is a A object). When I …
0
votes
0answers
15 views
ExecuteAndWaitInterceptor
Does ExecuteAndWaitInterceptor work in Struts 1? If yes any samples for the same?
If no can anyone tell how to show a waiting page in Struts 1 when the control will be with the Action class.
0
votes
1answer
882 views
Struts 2 File Upload Interceptor configuration problem
I'm having two problems when trying to configure the Struts 2 File Upload Interceptor in my application. I want to change the parameter maximumSize (the default value is 2 MB, I need it to be 5 MB) …
0
votes
1answer
51 views
linq to sql query interceptor
I'm looking at implementing some LINQ to SQL but am struggling to see how we woudl add in access control business rules such as customer a can only view their orders.
In ado.net data services, query …
0
votes
1answer
67 views
JAXWS Interceptors
What are JAX WS Interceptors? Where do I find info regarding the same!
