Adds attribute for PathContainer to avoid repeating parsePath in PathRoutePredicateFactory

Fixes gh-2884
This commit is contained in:
liruihao
2023-03-07 13:19:04 +08:00
committed by spencergibb
parent 9575a3496e
commit 18e116c1c6
4 changed files with 101 additions and 1 deletions

View File

@@ -170,6 +170,17 @@
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
<version>1.20</version>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-generator-annprocess</artifactId>
<version>1.20</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>