Non-Web Service API and initialization

3
I need to integrate with a third party service provider and web services are absolutely not an option (for several reasons). The api is a simple java POJO interface passing/receving java objects. I see that I can make the call using a custom java action. However, I need to be able to initialize the connection to the service once up front and store it so that I don't have to each time I call it inside the java action which would significantly hurt performance. What is the best way to initialize this java connection class and make it available downstream in my custom java actions?
asked
2 answers
2

Maybe you could initialize the connection after startup of your app?

answered
-1

If you want to reuse the same connection within one request, you can store that connection in a static ThreadLocal variable, that will make it available in all java actions started from the same thread (request)

answered