21 lines
554 B
Java
21 lines
554 B
Java
package com.tiesheng.encrypt;
|
|
|
|
|
|
import com.tiesheng.encrypt.config.EncryptConfig;
|
|
import com.tiesheng.encrypt.config.EncryptRequestBodyAdvice;
|
|
import com.tiesheng.encrypt.config.EncryptResponseBodyAdvice;
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* @author hao
|
|
*/
|
|
@Configuration
|
|
@ComponentScan(basePackageClasses = {
|
|
EncryptConfig.class,
|
|
EncryptRequestBodyAdvice.class,
|
|
EncryptResponseBodyAdvice.class,
|
|
})
|
|
public class EnableEncryptConfig {
|
|
}
|