You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
########################################################################### Standard Propertiesorg.gradle.jvmargs = -Xmx1G
org.gradle.warning.mode = all
########################################################################### Maven Propertiesgroup = com.example
name = demo
version = 1.0.0
########################################################################### Dependency Versions# Check this on https://plugins.gradle.org/plugin/org.springframework.boot/spring_boot_version = 3.2.2
# Check this on https://plugins.gradle.org/plugin/io.spring.dependency-management/spring_dependency_management_version = 1.1.4
# Check this on https://plugins.gradle.org/plugin/io.freefair.lombok/lombok_version = 8.6
# Check this on https://plugins.gradle.org/plugin/io.freefair.aspectj.post-compile-weaving/aspectj_version = 8.6
# Check this on https://adoptium.net/temurin/releases/java_version = 21
##########################################################################
I've configured all of this to try to use AspectJ (Post-Compile Weaving) but it doesn't seem to be using it. I know it isn't using it off of logs like:
TRACE 19876 --- [nio-8080-exec-5] o.s.t.i.TransactionInterceptor : Getting transaction for [org.springframework.data.jpa.repository.support.SimpleJpaRepository.findAll]
TRACE 19876 --- [nio-8080-exec-5] o.s.t.i.TransactionInterceptor : Completing transaction for [org.springframework.data.jpa.repository.support.SimpleJpaRepository.findAll]
Which indicate Spring is still managing transactions for my JPA repository operations. I have no idea what I need to change to get this to work. Any help is greatly appreciated.
Here's my build.gradle.kts:
My settings.gradle.kts:
My gradle.properties:
My ApplicationConfiguration.java:
My application.properties:
I've configured all of this to try to use AspectJ (Post-Compile Weaving) but it doesn't seem to be using it. I know it isn't using it off of logs like:
Which indicate Spring is still managing transactions for my JPA repository operations. I have no idea what I need to change to get this to work. Any help is greatly appreciated.
My JVM Command Line is:
The text was updated successfully, but these errors were encountered: