Home >Java >javaTutorial >How to Resolve Java SecurityException: Mismatched Signer Information?
Java SecurityException: Mismatched Signer Information
When recompiling classes, it's possible to encounter the following error:
java.lang.SecurityException: class "Chinese_English_Dictionary"'s signer information does not match signer information of other classes in the same package
Cause:
This exception occurs when classes belonging to the same package are loaded from multiple JAR files that have been signed with different certificates, or where some JAR files are signed and others are not.
Solution:
The above is the detailed content of How to Resolve Java SecurityException: Mismatched Signer Information?. For more information, please follow other related articles on the PHP Chinese website!