Open melissapalmer opened 6 years ago
You need a transactionManager for JPA. You can change the beans that are being created to the ones you need for your project.
You are also adding spring web-mvc to the dependency tree. This project is for using Mule not Spring Web.
You can update to version 1.2.0 and define your JPA beans like in this example.
<dependency>
<groupId>net.taptech</groupId>
<artifactId>mule-spring-boot-starter</artifactId>
<version>1.2.0</version>
</dependency>
Thank you... this has worked now.
Hi
If I inlcude JPA and h2 DB in pom.xml
because I want to use Jpa Repository such as:
I am getting the error:
I see you are setting this up in the MuleContextStartupConfiguration class.
Is there a way around this?
Thank you in advance Melissa