Oracle Toplink 11g with Spring 2.5.6 Transaction Manager - spring

We are migrating from OC4J to Weblogic.
But we want to keep using Toplink in Weblogic with Spring 2.5.6.
In my case, I want to join both Toplink Transaction with my own Transaction within one transaction manager.
Is it possible to work Oracle Toplink 11g with Spring 2.5.6?
Im not sure Spring 2.5.6 can use Oracle Toplink 11g or not

Related

Spring WebFlux + reactive DB2 - how to migrate from Hikari datasource and JDBC?

I've migrated an entire project to reactive WebFlux, the only missing thing is the DB queries. At the moment I'm using JdbcTemplate and Hikari Datasources and I need to make DB calls reactive?
I tried to use vertx-db2-client but it seems it does not work fine with Webflux (or I'm not capable to use it correctly).
What options do I have? Can you show any working example with Webflux and DB2?
Thanks
You would need to find that the database DB2 is supported by Spring data reactive libraries. When I look at https://spring.io/projects/spring-data-r2dbc I don't see DB2 being in the list of database they support.

Spring boot oracle database without hibernate?

i managed to connect my spring boot application with postgres without hibernate, but with r2dbc for a reactive application.
I was wondering if i can connect spring boot to oracle database without hibernate for a non reactive application ?
Spring Data provides two basic modules for integrating applications with relational databases. Spring Data JDBC is for imperative applications while Spring Data R2DBC is for reactive ones. They both use the same interfaces and patterns. If you're familiar with Spring Data R2DBC, it will be straightforward to work with Spring Data JDBC.

Is it possible to accessing Pervasive sql database via spring boot?

it's possible to accessing Pervasive sql database via spring boot
I have not used Spring Boot but it looks like it supports JDBC and Pervasive offers a JDBC interface. Documentation for the Actian Zen (current, as of March 2021, version of Pervasive SQL) JDBC is available at https://docs.actian.com/zen/v14/index.html#page/jdbc/jdbc_gd.htm

Is Spring Framework 5.x compatible with Oracle WebLogic 12c (12.2.1.3.0)?

In my application I am trying to implement latest Spring Framework 5.x but i am not sure that Spring 5.x is compatible with Oracle WebLogic 12c (12.2.1.3.0) or not as on UNIX environment we are having Java 8 and Oracle WebLogic 12c (12.2.1.3.0)?
Yes, it is possible. For reference please see: Spring Boot Weblogic 12c

#Version not working with spring data jpa, Hibernate and Db2

Spring Data JPA with DB2 doesn't working. I am using org.springframework.data.annotation.Version; as a version annotation.

Resources