This is an automated email from the ASF dual-hosted git repository.
bdemers pushed a change to branch 1.7.x
in repository https://gitbox.apache.org/repos/asf/shiro.git.
from 0b370f5 Update Jenkinsfiles with 1.7 branch
new 6acaaee Add ShiroUrlHelper and related Spring configuration
new a283004 Adds configuration to toggle the normalization of backslashes
new 74d4cb6 Disable jsessionid URL rewriting by default
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../samples/spring/config/ApplicationConfig.java | 4 +-
.../samples/spring/config/JspViewsConfig.java | 4 +-
.../autoconfigure/ShiroWebAutoConfiguration.java | 10 ++++
.../ShiroWebMvcAutoConfiguration.java} | 21 ++++---
.../src/main/resources/META-INF/spring.factories | 3 +-
support/spring/pom.xml | 15 +++--
.../shiro/spring/web/ShiroUrlPathHelper.java} | 31 ++++------
.../web/config/AbstractShiroWebConfiguration.java | 7 ++-
.../AbstractShiroWebFilterConfiguration.java | 2 +-
.../web/config/ShiroRequestMappingConfig.java} | 18 ++----
.../spring/web/config/ShiroWebConfiguration.java | 7 +++
.../shiro/spring/web/ShiroUrlPathHelperTest.groovy | 46 +++++++++++++++
.../shiro/web/filter/InvalidRequestFilter.java | 22 +++++--
.../web/session/mgt/DefaultWebSessionManager.java | 2 +-
.../java/org/apache/shiro/web/util/WebUtils.java | 4 +-
.../web/filter/InvalidRequestFilterTest.groovy | 48 +++++++++++++--
.../mgt/DefaultWebSessionManagerTest.groovy | 5 +-
.../org/apache/shiro/web/util/WebUtilsTest.groovy | 52 ++++++++++++++++
.../apache/shiro/web/RestoreSystemProperties.java | 69 ++++++++++++++++++++++
19 files changed, 303 insertions(+), 67 deletions(-)
copy
support/{spring/src/test/java/org/apache/shiro/spring/web/testconfig/CacheManagerConfiguration.java
=>
spring-boot/spring-boot-web-starter/src/main/java/org/apache/shiro/spring/config/web/autoconfigure/ShiroWebMvcAutoConfiguration.java}
(57%)
copy
support/spring/src/{test/java/org/apache/shiro/spring/web/DummyFilter.java =>
main/java/org/apache/shiro/spring/web/ShiroUrlPathHelper.java} (59%)
copy
support/spring/src/{test/java/org/apache/shiro/spring/testconfig/EventBusTestConfiguration.java
=>
main/java/org/apache/shiro/spring/web/config/ShiroRequestMappingConfig.java}
(68%)
create mode 100644
support/spring/src/test/groovy/org/apache/shiro/spring/web/ShiroUrlPathHelperTest.groovy
create mode 100644
web/src/test/java/org/apache/shiro/web/RestoreSystemProperties.java