I am doing Java EE development on Weblogic, one of my EJB needs to process data from files. Since it is not recommended to access file system directly from EJB, I think a JCA adapter will be needed.

There are some examples for creating JCA adapter, but I wonder if I need to implement it by myself. If there are some well-implemented JCA adapters, I think I could make use of it by doing some configurations?

Oracle® Fusion Middleware seems to offer some JCA adapters, which is called "Technology Adapters". Can I use them with just some configurations? Or I have to develop my own adapter following JCA specification?

有帮助吗?

解决方案

There is no need to reinvent the wheel. The existing file system adapters from Oracle should do what you need.

You still need to interface to it as a JCA client however.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top