私は以前に休止状態を使用しましたが、保存をインターセプトするフィルターを正常に追加し、特定のインターフェイスを実装したエンティティには何かがログに記録されます。
新しいSpringDataで同様のことを行うことは可能ですか、私はそれを使い始めたばかりです。
私は以前に休止状態を使用しましたが、保存をインターセプトするフィルターを正常に追加し、特定のインターフェイスを実装したエンティティには何かがログに記録されます。
新しいSpringDataで同様のことを行うことは可能ですか、私はそれを使い始めたばかりです。
はい、いつでも春のデータでフィルター/インターセプターを追加できます
次に例を示します。
<bean id="customizableTraceInterceptor" class="
org.springframework.aop.interceptor.CustomizableTraceInterceptor">
<property name="enterMessage" value="Entering $[methodName]($[arguments])"/>
<property name="exitMessage" value="Leaving $[methodName](): $[returnValue]"/>
</bean>
<aop:config>
<aop:advisor advice-ref="customizableTraceInterceptor"
pointcut="execution(public * org.springframework.data.jpa.repository.JpaRepository+.*(..))"/>
</aop:config>
参照:http ://static.springsource.org/spring-data/data-jpa/docs/current/reference/html/