active questions tagged interceptor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T01:48:59Zhttp://stackoverflow.com/feeds/tag/interceptorhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1928273/spring-mvc-request-data-interceptor0Spring mvc request data interceptor.Vladimir2009-12-18T13:44:33Z2009-12-18T13:44:33Z
<p>I have following controller methods signature:</p>
<pre><code>@RequestMapping(value = "/markProductDone")
public String markProductDone(@RequestParam(value = "data") JsonObject jsonData)
</code></pre>
<p>where request data automatically converts to JsonObject type using @InitBinder.</p>
<p>I also know that <code>jsonData</code> contains certain field: <code>workerId</code>. And I want to automatically do some actions based on this workerId value. Actually I want to update record in db.
Is it possible to write some kind of interceptor which would do this update before each call to certain controller method?</p>
http://stackoverflow.com/questions/906786/can-i-inject-a-sessionbean-into-a-jee-aroundinvoke-interceptor0Can I inject a SessionBean into a JEE AroundInvoke-Interceptor?Michael Locher2009-05-25T13:40:39Z2009-12-17T05:00:02Z
<p>I have an EAR with modules:</p>
<ul>
<li>foo-api.jar</li>
<li>foo-impl.jar</li>
<li>interceptor.jar</li>
</ul>
<p>In foo-api there is:</p>
<pre><code>@Local
FooService // (interface of a local stateless session bean)
</code></pre>
<p>In foo-impl there is:</p>
<pre><code>@Stateless
FooServiceImpl implements FooService //(implementation of the foo service)
</code></pre>
<p>In interceptor.jar I want</p>
<pre><code>public class BazInterceptor {
@EJB
private FooService foo;
@AroundInvoke
public Object intercept( final InvocationContext i) throws Exception {
// do someting with foo service
return i.proceed();
}
</code></pre>
<p>The question is:</p>
<p>Will a Java EE 5 compliant application server (e.g. JBoss 5) inject into the interceptor?
If no, what is good strategy for accessing the session bean?</p>
<p>To consider:</p>
<ul>
<li>Deployment ordering / race conditions</li>
</ul>
http://stackoverflow.com/questions/1892808/seam-component-disinjected-too-soon-in-interceptor1SEAM: Component "disinjected" "too soon" in interceptor?wilth2009-12-12T08:50:29Z2009-12-12T18:03:50Z
<p>Hello,</p>
<p>Let's say I have the following interceptor in a SEAM app:</p>
<pre><code>public class MyInterceptor {
@In
private Monitor myMonitor;
@AroundInvoke
public Object aroundInvoke(InvocationContext ctx) throws Exception {
try {
myMonitor.a();
return ctx.proceed();
}
finally {
myMonitor.b();
}
}
}
</code></pre>
<p>myMonitor.a() works (so Monitor is correctly injected), myMonitor.b() fails because Monitor is already null. <a href="http://docs.jboss.org/seam/2.1.2.CR2/reference/en-US/html/concepts.html#d0e3995" rel="nofollow">Seam Doc</a> says: "Injected values are disinjected (i.e., set to null) immediately after method completion and outjection." </p>
<p>Is that what is happening? Can I do something to tell SEAM to "not yet" "disinject" the component? I can of course also do something like XContext.get(..), but I'm wondering whether this is a bug or a mistake from my side. thanks!</p>
http://stackoverflow.com/questions/1669049/castle-windsor-interceptor-for-private-protected-method1Castle Windsor Interceptor for private/protected methodHerman2009-11-03T17:53:58Z2009-11-04T05:12:56Z
<p>Hi all,</p>
<p>Is it true that in order for castle windsor's interceptor to intercept a method, that method needs to be declare public?</p>
http://stackoverflow.com/questions/1366710/how-can-my-application-read-windows-messages-wmsettext-from-another-applicatio0How can my application read windows messages (WM_SETTEXT) from another application? max2009-09-02T09:36:35Z2009-11-02T11:10:50Z
<p>Is there a way to intercept window messages from another app other than a global message hook? Platform: Windows XP. </p>
http://stackoverflow.com/questions/1603092/nhibernate-lazy-load-a-collection-of-data-from-a-service-not-the-database0NHibernate: Lazy load a collection of data from a service, not the databaseMatt Mangold2009-10-21T19:33:20Z2009-10-21T19:33:20Z
<p>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. </p>
<p>I already have a Custom Field Repository that handles the persistence of custom fields, and I don't want to try to recreate that logic in NHibernate mappings.</p>
<p>I would however like to support lazy loading of my custom fields. It would be nice if I could somehow trick the proxy into calling my dedicated repository for loading and saving rather than going through the NHibernate engine. </p>
<p>One way I solved this problem was to implement an interceptor which worked, but I took a performance hit when loading large amounts of data, because the dedicated repository was called each time an entity was loaded. It would be nice instead, if those calls to load custom fields were done lazily! From what I understand lazy loading cannot be done in an interceptor.</p>
<p>I have looked into implementing a custom user type (IUserType and IUserCollectionType), but the documentation is very limited, and I want to learn if it is even possible to do what I want before I go down the path of trying.</p>
<p>Here is an example of one of my domain objects:</p>
<pre><code>public class ContactEntity : ICustomFieldContainer
{
public long ContactId { get; set; }
public String FirstName { get; set; }
public String LastName { get; set; }
#region ICustomFieldContainer Members
public List<CustomFieldEntity> CustomFields { get; set; }
#endregion
}
</code></pre>
http://stackoverflow.com/questions/1579146/update-father-on-interceptor1Update father on interceptorAlberthoven2009-10-16T16:49:51Z2009-10-16T17:15:26Z
<p>My model:</p>
<pre><code> public class Father {
Set<Son> sons = new HashSet<Son>();
String name = null;
Date lastSonModifyDate = null;
// ... other fields and setters/getters
}
public class Son {
Father father = null;
String name = null;
Date lastModifyDate = null;
// ... other fields and setters/getters
}
</code></pre>
<p>Use case:</p>
<ol>
<li>There is in DB a <code>Father</code> object with a <code>Son</code> object associated (bidir).</li>
<li>Load from DB father.</li>
<li>Update name field for father.</li>
<li>Update name field for son.</li>
<li>Persist father.</li>
</ol>
<p>My interceptor first detects father updates (onFlushDirty). Then executes the onFlushDirty for the son. In this case, I update son.lastModifyDate <strong>and also father.lastSonModifyDate</strong>.</p>
<p>When execution ends, <strong>all updates are persisted except father.lastSonModifyDate</strong>. I think this is because father is in session and has been updated before son, so this entity overrides the changes done in onFlushDirty method for the son entity.</p>
<p>How could I achieve my mark (set father's lastSonModifyDate from son interceptor)?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1568192/hibernate-interceptor-entity-intercepted-when-a-collection-element-updated0Hibernate interceptor: entity intercepted when a collection element updatedAlberthoven2009-10-14T18:38:37Z2009-10-15T18:29:36Z
<p>Hi all.</p>
<p>I need to know how can I set Hibernate (...) to achieve the following issue:</p>
<p>I have a bidirectional (composition) one-to-many association (a.bs is a Set object and b.a is a A object). When I load "a" from DB and I update one of its "bs" I need Hiernate intercept A entity when saveOrUpdate A.</p>
<p>Code:</p>
<pre><code>public class A {
Set<B> bs = new HashSet<B>();
// ... other fields and setters/getters
}
public class B {
A a = null;
// ... other fields and setters/getters
}
</code></pre>
<p>Use case:</p>
<pre><code>A a = load("idA"); // load A from DB
B b = s.getBById("idB"); // get a B element of A
b.setName("blablabla"); // update a field of B
saveOrUpdate(a); // persist A entity with its Bs (including modified B)
</code></pre>
<p>The change is performed because the (mini)model has been annotated properly.</p>
<p>The problem is that my interceptor only detects the change in B entity, but not A. I need to detect A change because I need to update audit info.</p>
<p>Other point of view is: I need to get A entity via B and update it. In fact, I can get A from B, but the change is not persisted...</p>
<p>Simplifying the question:
<strong>I have to modify A entity (set a date) when my interceptor intercepts B entity. It worksfine in onSave but not in onFlushDirty. Why?</strong></p>
<p>This is:
When B is updated, is intercepted (onFlushDirty). The body of onFlushDirty method, among other things, do this:</p>
<pre><code>b.getA().setLastModifyDate(new Date());
</code></pre>
<p>So, in that moment, A entity , that is attached to session, should became dirty, hence it should raise an interception action... I mean, the onFlushDirty method should be called again, his time for A entity. Am I wrong?
But, in any case, A.lastModifyDate should be updated... and this is not happening!!!</p>
<p>Following I show the actual behaviour of my application:</p>
<ol>
<li>I create an A object</li>
<li>I create a B object and I associate it to A</li>
<li><p>I persist A => A.lastModifyDate is the correct date (<strong>OK</strong>)</p></li>
<li><p>I create an A object</p></li>
<li>I create a B object and I associate it to A</li>
<li>I persist A => A.lastModifyDate is the correct date (<strong>OK</strong>)</li>
<li><p>I load the B object, I update it and I persist B -> A.lastModifyDate is the correct date (<strong>OK</strong>)</p></li>
<li><p>I create an A object</p></li>
<li>I create a B object and I associate it to A</li>
<li>I persist A => A.lastModifyDate is the correct date (<strong>OK</strong>)</li>
<li><p>I load A object, I update its B object and I persist A -> A.lastModifyDate <strong>is not</strong> the correct date (<strong>KO</strong>)</p></li>
<li><p>I create an A object</p></li>
<li>I create a B object and I associate it to A</li>
<li>I persist A => A.lastModifyDate is the correct date (<strong>OK</strong>)</li>
<li><p>I load A object, I update any A's field and also its B object and I persist A -> A.lastModifyDate <strong>is not</strong> the correct date (<strong>KO</strong>)</p></li>
<li><p>I create an A object and I persist it.</p></li>
<li><p>I load A object, I associate to it a new B object and I persist A => A.lastModifyDate is the correct date (<strong>OK</strong>)</p></li>
<li><p>I create an A object and I persist it.</p></li>
<li>I load A object, I update any A's field, I associate to it a new B object and I persist A => A.lastModifyDate is the correct date (<strong>OK</strong>)</li>
</ol>
<p>Any idea?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1521573/seam-interceptors1Seam - InterceptorsWalter White2009-10-05T18:12:43Z2009-10-05T19:00:33Z
<p>Hi all,</p>
<p>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 and registered interceptors and simply adding the one I want to that list.</p>
<p>Walter</p>
http://stackoverflow.com/questions/1509346/how-would-you-intercept-all-exceptions1How would you intercept all Exceptions?nkr1pt2009-10-02T12:57:09Z2009-10-02T15:29:50Z
<p>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 there another way?
Is the simplest solution also a good solution regarding impact on execution performance?
I would like to hear possible solutions from more experienced developers as I'm trying to grasp the technical know-how about the subject.</p>
<p><strong>EDIT:</strong></p>
<p>Thanks for the good advice already, but doesn't the current advice only apply to checked exceptions? What about unchecked exceptions, like NullPointerExceptions, wouldn't it be useful if these could be caught and that the application on catching them dumps the heap/stack to provide you with the current context of the application at the moment of crashing?</p>
http://stackoverflow.com/questions/1496098/executeandwaitinterceptor0ExecuteAndWaitInterceptorHarish2009-09-30T04:19:36Z2009-09-30T04:19:36Z
<p>Does ExecuteAndWaitInterceptor work in Struts 1? If yes any samples for the same?</p>
<p>If no can anyone tell how to show a waiting page in Struts 1 when the control will be with the Action class.</p>
http://stackoverflow.com/questions/1445791/struts-2-file-upload-interceptor-configuration-problem0Struts 2 File Upload Interceptor configuration problemmatheus.emm2009-09-18T17:11:07Z2009-09-27T16:05:01Z
<p>I'm having two problems when trying to configure the Struts 2 File Upload Interceptor in my application. I want to change the parameter <code>maximumSize</code> (the default value is 2 MB, I need it to be 5 MB) and the message resource <code>struts.messages.error.file.too.large</code> (the app locale is pt_BR, so the message is in portuguese, not english).</p>
<p>The app current configuration follows:</p>
<p><strong>struts.properties</strong></p>
<pre><code>struts.locale=pt_BR
struts.custom.i18n.resources=MessageResources
</code></pre>
<p><strong>struts.xml</strong></p>
<pre><code><package name="default" namespace="/" extends="struts-default">
<interceptors>
<interceptor name="login" class="br.com.probank.interceptor.LoginInterceptor"/>
<interceptor-stack name="defaultLoginStack">
<interceptor-ref name="login" />
<interceptor-ref name="defaultStack"/>
</interceptor-stack>
</interceptors>
<default-interceptor-ref name="defaultLoginStack" />
...
</package>
...
<package name="proposta" namespace="/proposta" extends="default">
<action name="salvarAnexoProposta" method="salvarAnexoProposta" class="br.com.probank.action.AnexoPropostaAction">
<interceptor-ref name="defaultLoginStack">
<param name="fileUpload.maximumSize">5242880</param>
</interceptor-ref>
<result name="success">/jsp/listagemAnexosPropostaForm.jsp</result>
<result name="input">/jsp/crudAnexoPropostaForm.jsp</result>
<result name="error">/jsp/error.jsp</result>
<result name="redirect" type="redirect">${redirectLink}</result>
</action>
</package>
</code></pre>
<p><strong>MessageResources.properties</strong></p>
<pre><code>...
struts.messages.error.file.too.large=O tamanho do arquivo...
</code></pre>
<p>There is nothing special about my Action implementation and my JSP code. They follow the example found <a href="http://struts.apache.org/2.1.6/docs/file-upload-interceptor.html" rel="nofollow">http://struts.apache.org/2.1.6/docs/file-upload-interceptor.html</a>. When I try to upload a file with more than 5 MB the app shows the message "the request was rejected because its size (6229458) exceeds the configured maximum (2097152)" - the default File Upload message with the default maximumSize value.</p>
<p>I try to put the message resource <code>struts.messages.error.file.too.large</code> in a struts-messages.properties but the message didn't change after that. What is the proper way to configure the File Upload Interceptor? I'm using Struts 2 2.1.7. Thanks in advance.</p>
http://stackoverflow.com/questions/1398362/jaxws-interceptors0JAXWS InterceptorsAjay2009-09-09T08:39:15Z2009-09-24T11:00:02Z
<p>What are JAX WS Interceptors? Where do I find info regarding the same!</p>
http://stackoverflow.com/questions/1444538/linq-to-sql-query-interceptor0linq to sql query interceptorunknown (google)2009-09-18T13:26:59Z2009-09-18T13:39:42Z
<p>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 intercptors do exactly what I am after, and can see how to check on update / insert / delete, but is there an equivalent of this:</p>
<pre><code>[QueryInterceptor("Orders")]
public IQueryable<Orders> OnQueryOrders(IQueryable<Orders> orderQuery)
{
return from o in orderQuery
where o.Customers.ContactName == HttpContext.Current.User.Identity.Name
select o;
}
</code></pre>
<p>Or wil I need to control via accessors along the line of:
GetOrdersByCustomer(string customerId)</p>
http://stackoverflow.com/questions/1317769/struts2-interceptor-after-jsp-is-rendered-how0Struts2 Interceptor *after* JSP is rendered - how?Hisham2009-08-23T04:33:10Z2009-09-15T23:10:50Z
<p>I was wondering if I can capture the result of an action after the result returns and the JSP is rendered. I want to be able to take the entire result (generated HTML) and push it into memcached so I can bring it via Nginx with-out hitting the application server. Any ideas?</p>
<p>PS: I know I can run the interceptor after the action executes but before the result returns and the JSP is rendered, but not after the JSP is rendered.</p>
http://stackoverflow.com/questions/1338894/stop-a-loop-inside-a-method-in-c-1Stop a loop inside a method in C#Josh2009-08-27T04:47:40Z2009-08-27T21:33:09Z
<p>Is there any way to stop a running loop inside another method or insert a break statement dynamically in C#?</p>
<p>Thanks</p>
<p>Edit : I want to be able to dynamically intercept the method and insert a break to stop the loop when an event gets triggered in another function.I have several instances of the class and I want to stop the loop in each instance whenever required and manage all the instances. Consider multiple instances to be in a generic list</p>
<p>Example : </p>
<pre><code>List<myclass> objlist=new List<myclass>();
foreach(myclass obj in objlist)
{
obj.loopingfunction().BreakLoop //or something like this (assuming that the loopingfunction is already called)
}
</code></pre>
<p>I need this because I want to break the loop once the user stores some huge amount of data.When the user imports the data,I get a event fired. But I cannot keep checking the database from multiple instances since it screws up sqlserver.</p>
<p>This is in an ASP.Net application.</p>
http://stackoverflow.com/questions/1178305/asp-net-mvc-and-recaptcha-action0asp.net mvc and recaptcha actionKumar2009-07-24T15:08:31Z2009-08-27T02:51:04Z
<p>When a user submits a form, i'd like to show/redirect to the captcha page intermittently ( based on some custom rules ) and if validated, then execute/commit the first action</p>
<p>Is there a way of doing this using the ActionFilter ?
or any other way ?</p>
http://stackoverflow.com/questions/1320128/add-interceptors-through-the-web-config-nhibernate0Add Interceptors through the web.config? NHibernateToran Billups2009-08-24T01:46:18Z2009-08-24T02:43:09Z
<p>I can't seem to find an example where someone added an interceptor via web.config - is this possible? </p>
<p>And yes I know about event listeners and will be using them on another project - but I wanted to see if I could get around having to inject the interceptor in code - thank you</p>
http://stackoverflow.com/questions/1226821/how-can-i-intercept-execution-of-all-the-methods-in-a-java-application-using-groo2How can I intercept execution of all the methods in a Java application using Groovy?Geo2009-08-04T10:52:13Z2009-08-11T18:39:13Z
<p>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 <code>Object.metaClass.invokeMethod</code>, but it doesn't seem to work. </p>
<p>Is this doable?</p>
http://stackoverflow.com/questions/1234598/session-objects-into-seam-interceptors0Session objects into Seam InterceptorsKamia2009-08-05T17:20:17Z2009-08-05T20:05:12Z
<p>Hello guys, once more i'm here asking help on seam subject.</p>
<p>Currently we have the following interceptor for audit</p>
<pre><code>@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Interceptors(LoggingInterceptor.class)
public @interface IAuditavel {
}
</code></pre>
<p>and the interceptor itself</p>
<pre><code>private EntityManager em;
@Logger
private Log logger;
@In(required = false)
Usuario usuario;
@AroundInvoke
public Object aroundInvoke(InvocationContext ctx) throws Exception {
if (ctx.getMethod().isAnnotationPresent(IAuditavel.class) || isInterceptorEnabled()) {
// Inicializa o EM fora do escopo do SEAM
em = (EntityManager) Component.getInstance("entityManager");
// Entidade para logging
LogEntidade entidade = new LogEntidade();
// Chave 0
entidade.setIdLog(new BigDecimal(0));
// Metodo chamado
entidade.setAcao( ctx.getTarget().getClass().getSimpleName() + "." + ctx.getMethod().getName() );
// Usuario logado no momento
entidade.setUsuario( usuario );
// Parametros
Object[] params = ctx.getParameters();
StringBuilder sb = new StringBuilder("");
for (Object o : params){
sb.append(o + ", ");
}
// Data da execução
entidade.setDataAlteracao(new Date());
// Salva e desconecta a entidade
em.persist(entidade);
em.flush();
// Põe os valores da entidade no log do jboss
saveToServerLog(entidade);
}
// Continua a execução do método interceptado
return ctx.proceed();
}
/***
* Retorna true caso a classe / método seja anotada com o nosso interceptor
*/
public boolean isInterceptorEnabled() {
return getComponent().beanClassHasAnnotation(IAuditavel.class);
}
public void saveToServerLog(LogEntidade entidade) {
if (logger.isInfoEnabled()) {
logger.info("> " + entidade.getDataAlteracao() + ":"
+ entidade.getAcao() + " com os parametros : "
+ entidade.getParametros());
}
}
</code></pre>
<p>I presume the </p>
<pre><code>@In(required = false)
Usuario usuario;
</code></pre>
<p>won't work because seam domain don't get into the interceptor. So how do I inject a session atribute setted on the login method as:</p>
<pre><code> @In(required = false)
@Out(scope = ScopeType.SESSION, required = false)
Usuario usuario;
</code></pre>
<p>on the authenticator class.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/906780/how-to-implement-an-audit-interceptor-using-ibatis0How to implement an Audit Interceptor using iBATIS ? muriloq2009-05-25T13:39:22Z2009-07-10T15:07:10Z
<p>I want to log all changes in my database for auditing purposes, using a table called AuditEvent that stores the modified row ID (primary key), table name, column name, previous value, new value, date of change (timestamp), operation type (insert / update / delete) and the name of the user who did the changes. </p>
<p>I'm using SQL Server 2005, but I don't want to use triggers, because since I use a connection pool it would be difficult to find the current user. </p>
<p>The Hibernate solution based on an Interceptor is pretty simple. How do I do something similar when using iBATIS / iBATOR ?</p>
http://stackoverflow.com/questions/1034707/nhibernate-session-management-and-lazy-loading8NHibernate session management and lazy loadingjoshlrogers2009-06-23T19:36:37Z2009-06-25T14:17:24Z
<p>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 what I am thinking by where Fabio Maulo keeps directing me.</p>
<p>Anyways, my problem is that I have a win forms application that is making "get" calls and binding the result to a grid. After binding the user may perform some kind of "write" action and those result in the session being closed after the write in an attempt to use the session per use concept. Then the user may scroll through the grid which causes the lazy loading to kick off and now the session has been closed and I get an exception.</p>
<p>I do not want to make my view cognizant of my sessions, I don't want to send off a KillAllSessions when the user closes the form. Plus a user may have multiple forms open at any given time further compounding the issues associated with that method. I essentially want all of this to work "behind the scenes".</p>
<p>So my idea thus far is to intercept the lazy loading call and check to see if the session is open and if not re-open it, get the information then re-close it. However, as far as I can tell, which isn't much, this is essentially how the lazy loading works anyways. It is intercepted by the proxy factory (NHibernate.Bytecode.Castle) and then retrieves the data using the session. So I need to actually intercept that call then pass it on to the original intended intercept after re-opening the session. So that is my idea.</p>
<p>My question is essentially first of all is this even the right way to go about this? Second if it is I don't even know where to start. I have never done any intercepting of method calls, I knew of it in theory but not in practice. I know there are libraries out there that do this kind of thing such as Rhino Commons, but I want to take this opportunity to learn and become a better programmer. I am trying to understand AOP and Context Bound Objects but currently I am not grokking it. Could some of you folks please help a guy out?</p>
http://stackoverflow.com/questions/979660/why-doesnt-interceptors-onload-work0Why doesn't interceptor's onLoad() work?Max2009-06-11T06:39:09Z2009-06-24T15:13:42Z
<p>We have a jboss based system</p>
<p>persistance.xml looks like a following:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
<persistence-unit name="solutions" transaction-type="JTA">
<jta-data-source>java:/mam</jta-data-source>
<class>....</class>
......
<class>....</class>
<exclude-unlisted-classes>true</exclude-unlisted-classes>
<properties>
<property name="hibernate.connection.datasource" value="java:/mam"/>
<property name="jboss.entity.manager.factory.jndi.name" value="java:/solutions"/>
<property name="hibernate.ejb.interceptor"
value="interceptor.AuditAndDeletableCatcherInterceptor"/>
<property name="hibernate.hbm2ddl.auto" value="validate"/>
<property name="hibernate.show_sql" value="false"/>
<property name="hibernate.format_sql" value="false"/>
<property name="hibernate.use_sql_comments" value="false"/>
<property name="hibernate.generate_statistics" value="false"/>
<property name="hibernate.bytecode.use_reflection_optimizer" value="cglib"/>
<property name="hibernate.dialect" value="com.magenta.componentization.audit.sql.MySQL5CustomDialect"/>
<property name="hibernate.query.substitutions" value="true 1, false 0"/>
<property name="hibernate.connection.provider_class"
value="org.hibernate.connection.DatasourceConnectionProvider"/>
<property name="hibernate.current_session_context_class" value="thread"/>
<property name="cache.provider_class" value="org.hibernate.cache.NoCacheProvider"/>
</properties>
</persistence-unit>
</persistence>
</code></pre>
<p>Interceptor's code:</p>
<pre><code>public class AuditAndDeletableCatcherInterceptor extends AuditInterceptor {
DeletableCatcherDeligate deletableCatcherDeligate =
new DeletableCatcherDeligate();
@Override
public boolean onLoad(Object o, Serializable serializable, Object[] objects, String[] strings, Type[] types) {
deletableCatcherDeligate.onLoad(o, serializable, objects, strings, types);
return super.onLoad(o, serializable, objects, strings, types);
}
}
</code></pre>
<p>Where AuditInterceptor extends native hibernate's EmptyInterceptor
and overload some methods like onSave(), onFlush(), onPreFlush()</p>
<p>Some methods of the AuditAndDeletableCatcherInterceptor work, but onLoad() is never called.
What am I doing wrong?</p>
http://stackoverflow.com/questions/920768/how-do-you-obtain-the-value-of-struts-action-extension-in-a-struts2-interceptor0How do you obtain the value of struts.action.extension in a struts2 interceptor?Peter Kelley2009-05-28T13:14:00Z2009-05-28T14:40:33Z
<p>I need to access the struts.action.extension value in the struts.xml file from an interceptor. Any suggestions?</p>
http://stackoverflow.com/questions/902387/structuremap-interceptors0StructureMap InterceptorsDerek Ekins2009-05-23T20:12:48Z2009-05-25T02:11:42Z
<p>I have a bunch of services that implement various interfaces. eg, IAlbumService, IMediaService etc.</p>
<p>I want to log calls to each method on these interfaces. How do I do this using StructureMap?</p>
<p>I realise this is pretty much the same as this <a href="http://stackoverflow.com/questions/420891/how-do-i-tell-windsor-to-add-an-interceptor-to-all-components-registered-that-imp">question</a> it is just that I am not using windsor.</p>
http://stackoverflow.com/questions/892220/nhibernate-interceptor-auditing-inserted-object-id0NHibernate Interceptor Auditing Inserted Object IdTonE2009-05-21T10:13:49Z2009-05-22T15:35:21Z
<p>Hi,</p>
<p>I am using NHibernate interceptors to log information about Updates/Inserts/Deletes to my various entities.</p>
<p>Included in the information logged is the Entity Type and the Unique Id of the entity modified. The unique Id is marked as a <code><generator class="identity"></code> in the NHibernate mapping file.</p>
<p>The obvious problem is when logging an Insert operation using IInterceptor.OnSave() the Id of the entity has not yet been assigned.</p>
<p>How can I obtain the Id of the inserted entity before logging the audit information?</p>
<p>(I have looked into NHibernate Listeners PostSave event but can't get them working with the Spring.net configuration being used, so I would like to stick with interceptors if at all possible)</p>
<p>Many thanks.</p>
<p>Code:</p>
<pre><code> // object id parameter is null...
public override bool OnSave(object entity, object id, object[] state,
string[] propertyNames, IType[] types)
{
AddAuditItem(entity, INSERT);
return false;
}
</code></pre>
http://stackoverflow.com/questions/867341/nhibernate-difference-interceptor-and-listener2NHibernate: difference Interceptor and Listenerbernhardrusch2009-05-15T07:01:21Z2009-05-15T07:09:50Z
<p>Looking at all the possibilites of creation / update columns in NHibernate I mostly (<a href="http://stackoverflow.com/questions/551701/how-do-i-implement-changetime-and-changeuser-columns-using-nhibernate">Stackoverflow question</a>, <a href="http://ayende.com/Blog/archive/2009/04/29/nhibernate-ipreupdateeventlistener-amp-ipreinserteventlistener.aspx" rel="nofollow">Ayende Rahien</a>) see solutions with Listeners. </p>
<p>The programmer who was programming this in my company used an Interceptor to achieve the same thing.</p>
<p>Is there any difference between those two solutions ? (Is on of them obsolete, is one of them preferred and what are the advantages and / or disadvantes)</p>
http://stackoverflow.com/questions/854725/nhibernate-meaning-of-interceptors-return-value0NHibernate: Meaning of interceptors return valueeyston2009-05-12T20:30:20Z2009-05-12T21:02:23Z
<p>Hello,</p>
<p>I think this is an easy question, but my googling is weak on this.</p>
<p>I had the problem described in the following link with regard to a generated ID and cascading:</p>
<p>https://www.hibernate.org/hib_docs/nhibernate/html/example-parentchild.html (towards the bottom)</p>
<p>I fixed it using their suggested method of an Interceptor. Everything appears to be working, so I am happy.</p>
<p>That said, I have no idea what the significance of the return value is from methods such as:</p>
<pre><code> public override bool OnLoad(object entity, object id, object[] state, string[] propertyNames, IType[] types)
{
if (entity is Persistent) ((Persistent)entity).OnLoad();
return false;
}
public override bool OnSave(object entity, object id, object[] state, string[] propertyNames, IType[] types)
{
if (entity is Persistent) ((Persistent)entity).OnSave();
return false;
}
</code></pre>
<p>In both cases false is returned.</p>
<p>When I google about NHibernate Interceptors I see plenty of examples of how to write one. Some instead return true (<a href="http://www.lostechies.com/blogs/rhouston/archive/2008/03/27/creating-a-timestamp-interceptor-in-nhibernate.aspx" rel="nofollow">http://www.lostechies.com/blogs/rhouston/archive/2008/03/27/creating-a-timestamp-interceptor-in-nhibernate.aspx</a>). I have no idea what the difference is here. My code is working, but Interceptors seem useful to me so I'd like to have a better understanding.</p>