在1.2.2RELEASE中只提供了
public EncryptionFilter(EncryptionConfig config, EncryptAlgorithm encryptAlgorithm, DispatcherServlet dispatcherServlet) {
this.encryptionConfig = config;
this.encryptAlgorithm = encryptAlgorithm;
this.dispatcherServlet = dispatcherServlet;
}
而没有提供
public EncryptionFilter(EncryptionConfig config, EncryptAlgorithm encryptAlgorithm) {
this.encryptionConfig = config;
this.encryptAlgorithm = encryptAlgorithm;
}
请问如果使用1.2.2RELEASE的话 ,DispatcherServlet实例如何获取?
在1.2.2RELEASE中只提供了
而没有提供
请问如果使用1.2.2RELEASE的话 ,DispatcherServlet实例如何获取?