Hello I am using Spring to create a database connection bean by http request. In order to do that, Spring creates a proxy on the bean (because I declared it with scope "request") but when the server started I got the below messages:
2016-04-10 02:33:22.688 INFO 14861 --- [ main] o.s.aop.framework.CglibAopProxy : Unable to proxy method [public final com.tinkerpop.blueprints.impls.orient.OrientEdgeType com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.getEdgeType(java.lang.String)] because it is final: All calls to this method via a proxy will NOT be routed to the target instance. 2016-04-10 02:33:22.689 INFO 14861 --- [ main] o.s.aop.framework.CglibAopProxy : Unable to proxy method [public final com.tinkerpop.blueprints.impls.orient.OrientVertexType com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.getVertexType(java.lang.String)] because it is final: All calls to this method via a proxy will NOT be routed to the target instance. 2016-04-10 02:33:22.689 INFO 14861 --- [ main] o.s.aop.framework.CglibAopProxy : Unable to proxy method [public final void com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.dropVertexType(java.lang.String)] because it is final: All calls to this method via a proxy will NOT be routed to the target instance. 2016-04-10 02:33:22.689 INFO 14861 --- [ main] o.s.aop.framework.CglibAopProxy : Unable to proxy method [public final void com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.dropEdgeType(java.lang.String)] because it is final: All calls to this method via a proxy will NOT be routed to the target instance. Is is possible to declare as *NOT* final the following methods?: - public final com.tinkerpop.blueprints.impls.orient.OrientEdgeType com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.getEdgeType(java.lang.String) - public final com.tinkerpop.blueprints.impls.orient.OrientVertexType com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.getVertexType(java.lang.String) - public final void com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.dropVertexType(java.lang.String) - public final void com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.dropEdgeType(java.lang.String) -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
