Skip to content

Commit 8d74885

Browse files
committed
fix: Make SPACspNonceFilter non final to avoid CGLIB subclass generation error
1 parent de42195 commit 8d74885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/main/java/eu/zuinnote/example/springwebdemo/configuration/SPACspNonceFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import org.springframework.web.util.ContentCachingResponseWrapper;
2727

2828
@Component
29-
public final class SPACspNonceFilter implements Filter {
29+
public class SPACspNonceFilter implements Filter {
3030

3131
private static final String NONCE_PREFIX = "nonce-";
3232
private static final int NONCE_SIZE = 64;

0 commit comments

Comments
 (0)