Questions tagged [invocationhandler]

20 questions
0
votes
1 answer

Using invocation handler to open and close SQL session

I am using Mybatis to make a CRUD application for a database and since all of my methods contain repetitive code when opening and closing an SQL session I would like to use an invocation handler to minimize the code repetition. Almost all of my…
tadej
  • 55
  • 2
  • 8
0
votes
1 answer

Setting instance variables of the proxied objects in the InvocationHandler

In the Proxy object (the object implementing java.lang.reflect.InvocationHandler), I am trying to set an instance variable in the proxied object. Like the following: public class ServiceProxy implements InvocationHandler { private final Object…
Muhammad Hewedy
  • 29,102
  • 44
  • 127
  • 219
-1
votes
1 answer

android generic SQLite database

i developed a small java.lang.reflect.InvocationHandler that intercepts method calls (from a json webservice) and cache the results to a local SQLite db. if there is no internet connection results are read from local cache. everything works fine; my…
-2
votes
1 answer

I am having trouble in using jdk dynamic proxy

Before using spring aop and cglib, Now I replaced a simple example.I found that executing method sayHello1 () and sayHello2 () both output "before" and "after" Oh my god, it's very difficult, Do you understand what I am talking about? I am going…
Muscidae
  • 99
  • 1
  • 7
-2
votes
2 answers

Serializing a proxy

I am trying to serialize an invocation handler to a file. I am only trying to serialize the following part as it is the only part of the program that will change: public Object invoke(Object proxy, Method method, Object[] args) throws…
1
2