Untitled

mail@pastecode.io avatar
unknown
plain_text
21 days ago
353 B
3
Indexable
Never
I took jasypt source code and replaced a line to simply return false.

This was the line in jasypt source code that was causing the slowness : RefreshScopeRefreshedEventListener.java

boolean isAssignable(String className, Object value) {
    try {
        return ClassUtils.isAssignableValue(ClassUtils.forName(className, null),value);
     }...
Leave a Comment