java.lang.reflect.MalformedParameterizedTypeExcept ion
Has anyone encountered a MalformedParameterziedTypeException before?
I am encountering it when I attempt to define any properties at all in the CryptoFactoryBean.
Here is a snippet of the file that I am using for my context.
<bean id="cryptoFactoryBean" class="org.springframework.ws.soap.security.wss4j. support.CryptoFactoryBean" >
<property name="keyStorePassword" value="${javax.net.ssl.keyAliasPassword}"/>
<property name="keyStoreLocation" value="file:${javax.net.ssl.keyStore}"/>
<property name="keyStoreType" value="JKS"/>
</bean>
Now, if I do not define any properties at all, then the SpringFramework can successfully instantiate the bean.
Of course, the bean cannot be used because it is doesn't know where the keystore is.
If it helps I've tracked through the SpringFramework source code and isolated the issue down to this line:
258: extractTypeVariablesFromGenericInterfaces(clazz.ge tGenericInterfaces(), typeVariableMap);
in the class org.springframework.core.GenericTypeResolver.java
Any insight would be appreciated cause after 1 1/2 days, I've exhausted all my ideas.
Thanks