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
Copy file name to clipboardExpand all lines: docs/troubleshooting.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,17 @@
2
2
3
3
Move `@EnableJpaAuditing` to a separate configuration class `JpaAuditingConfig.java` so that we can exclude it from
4
4
testings. Otherwise it will throw errors when testing controllers:
5
+
5
6
```
6
7
Caused by: java.lang.IllegalArgumentException: JPA metamodel must not be empty
7
8
at org.springframework.util.Assert.notEmpty(Assert.java:398)
8
9
```
10
+
11
+
## Rest Assured - not support Spring Boot 4
12
+
13
+
Rest Assured 5.5.6 doesn't work with Groovy 5 (still use Groovy 4), which is not compatible with Spring Boot 4(uses
14
+
Groovy 5).
15
+
We need to replace Rest Assured with `WebTestClient` before Rest Assured's upgrade.
16
+
17
+
-[Remove integration for REST Docs' REST Assured support until REST Assured supports Groovy 5](https://github.com/spring-projects/spring-boot/issues/47685)
18
+
-[Drop support for REST Assured until it supports Groovy 5](https://github.com/spring-projects/spring-restdocs/issues/1000)
0 commit comments