injae kim
injae kim
oh interesting feature! may I handle this? I'll create PR within 4/22 🙇
Create PR #5590 :)
Really sorry for late, I'll update this PR within this weekend 🙇
> I think 1 or 2-2 is probably a realistic direction for this PR. Let me discuss with the other tomorrow morning If there's some discussion progress about direction, feel...
> We have decided to go with the second option aha~ I checked #5212. thanks for sharing! feel free to let me know when it's ready to go with the...
oh~ I'll update this PR on this weekend. thanks! :)
```java // AS-IS // Pool number is global to the VM to avoid overlapping pool numbers in classloader scoped environments threadPoolName = "HikariPool-1, 2, 3, ..."; // TO-BE static UUID...
May I handle this issue? please assign to me~! I'll create PR within this weekend!
I made https://github.com/spring-projects/spring-batch/pull/4492 PR~! PTAL when you have time 🙇
```java assertThat(pathMatcher.match("/abc/**", "/abc")).isTrue(); assertThat(pathMatcher.match("/abc/**", "/abc/")).isTrue(); assertThat(pathMatcher.match("/abc/**", "/abc/d")).isTrue(); assertThat(pathMatcher.match("/abc/**", "/abc/d/e")).isTrue(); assertThat(pathMatcher.match("/abc/**", "/abc/d/e/")).isTrue(); assertThat(pathMatcher.match("/abc**", "/abc")).isTrue(); assertThat(pathMatcher.match("/abc**", "/abc/")).isFalse() assertThat(pathMatcher.match("/abc**", "/abc/d")).isFalse();; assertThat(pathMatcher.match("/abc**", "/abc/d/e")).isFalse(); assertThat(pathMatcher.match("/abc**", "/abc/d/e/")).isFalse(); ``` To match all sub directories in AntStylePatternMatch, I...