How to Create WebLogic Persistent JDBCStore
Join the DZone community and get the full member experience.
Join For FreeWebLogic uses "Persistent Store " to store subsystems data, such as persistent JMS messages. It defaults to use File Store, but you can customize to use database instead. To do this, you would need to create a DataSource first, and ensure to UNCHECK the "Supports Global Transactions" feature. Basically you need to create an NON-XA DataSource in order to use it in Persistent JDBCStore. Otherwise you will not able to see your datasource as option to use.
Exmaple of a Non-XA DataSource:

Exmaple of JDBCStore using that Non-XA DataSource:

Exmaple of a Non-XA DataSource:
Exmaple of JDBCStore using that Non-XA DataSource:
Datasource
Data (computing)
Database
Published at DZone with permission of Zemian Deng, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Multi-Stream Joins With SQL
-
DevOps Pipeline and Its Essential Tools
-
The Native Way To Configure Path Aliases in Frontend Projects
-
Write a Smart Contract With ChatGPT, MetaMask, Infura, and Truffle
Comments