spring-batch
spring-batch copied to clipboard
Support full regular expression on `PatterMatcher.match()`
related issue #4412
Motivation:
- On #4412, we found that
PatternMatchingCompositeLineMapper
doesn't support regular expression matching- It only supports
AntPathMatcher
style matching now
- It only supports
Modification:
- Support full regular expression on
PatterMatcher.match()
that used onPatternMatchingCompositeLineMapper.mapLine()
Result:
- Now user can use full regular expression matching on
PatternMatchingCompositeLineMapper.mapLine()
- Close #4412 issue