This is an automated email from the ASF dual-hosted git repository.
bdemers pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shiro.git.
from a61a1c4 Merge pull request #261 from fpapon/jenkins
new 16fc47a Add ShiroUrlHelper and related Spring configuration
new 042c593 Adds configuration to toggle the normalization of backslashes
new 5b1add9 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 ++-
.../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 ++++++++++++++++++++++
18 files changed, 302 insertions(+), 66 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