-
1. Re: [newbie] expose tables through OData
rareddy Dec 10, 2018 9:54 AM (in response to luca-vercelli)Luca,
Welcome to Teiid Community, we thank you for considering using Teiid.
Yes, Teiid can be used to solve your usecase. There are few different ways this can be done.
1) If you looking for a standalone server based on WildFly you can use Teiid WildFly instance and design and deploy a vdb into it. There is WAR file for OData but that requires the VDB be installed in same server where a Teiid Server is also installed. So this may not right if you want to make it work in the Weblogic.
2) You can also Thorntail port of it, which is kind of based on WildFly and microprofile, best tuned for container workloads. An example can be found here just needs to add an extra dependency in pom.xml to enable the odata support. There may be a way to wrap this into a WAR file that can be deployed in weblogic, but I have no idea.
3) The last is Teiid based on Spring Boot, which is also better for container workloads, but this can be right choice IMO. Here is an example here. Here if you are just exposing a single database there is no need to create JPA objects to be created. I am also updating this library to accept a plain VDB file and expose odata on it (still in works, week or so before available). Here if you can find ways to deploy a spring boot app into Weblogic that may work. Something like Spring Boot on Oracle WebLogic Server 12 - virtual7 Blog
Ramesh..
-
2. Re: [newbie] expose tables through OData
luca-vercelli Dec 11, 2018 3:14 AM (in response to rareddy)Thank you very much!