Skip to content

Commit

Permalink
feature/cookie-based-security-added
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-zip committed May 26, 2024
1 parent 121050b commit 75fed0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>com.bloggios.authentication-config</groupId>
<artifactId>authentication-configuration-jar</artifactId>
<version>1.1</version>
<version>1.2</version>
<name>authentication-configuration-jar</name>
<description>authentication-configuration-jar</description>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected void doFilterInternal(HttpServletRequest request, HttpServletResponse
if (!CollectionUtils.isEmpty(cookiePaths)) {
isCookiePath = cookiePaths.stream().anyMatch(e -> antPathMatcher.match(e, request.getRequestURI()));
}
if (!isExcludePath) {
if (!isExcludePath && !isCookiePath) {
if (token != null) {
try {
jwtDecoder.decode(token);
Expand Down

0 comments on commit 75fed0b

Please sign in to comment.