79476026

Date: 2025-02-28 15:46:06
Score: 2.5
Natty:
Report link

In WebSphere Liberty’s server.xml, make sure your data source is set to non-transactional:

<dataSource id="myAppDatasource" 
            jndiName="jdbc/myAppDatasource" 
            transactional="false">
    <jdbcDriver ... /> <!-- Add driver details here -->
    <properties ... /> <!-- Add properties if needed -->
</dataSource>

Refer this document : https://openliberty.io/docs/latest/transaction-service.html

Reasons:
  • Blacklisted phrase (1): this document
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Ajay Paul