Java SecurityException: signer information does not match

后端 未结 18 3102
迷失自我
迷失自我 2020-11-22 12:56

I recompiled my classes as usual, and suddenly got the following error message. Why? How can I fix it?

java.lang.SecurityException: class \"Chinese_English_D         


        
18条回答
  •  甜味超标
    2020-11-22 13:50

    this happened to me when using JUnit + rest assured + hamcrest, in this case, dont add junit to build path, if you have the maven project, this resolved me, below is the pom.xml

    
    
        
            io.rest-assured
            rest-assured
            3.0.0
        
    
        
            org.hamcrest
            hamcrest-all
            1.3
        
    
    
        
        
            junit
            junit
            4.12
    
        
    
    
    
    

提交回复
热议问题