潘志宝
5 天以前 bab43330bf6f48bdb7bfb258611f51bb05ef56fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.iailab.framework.translate.config;
 
import com.iailab.framework.translate.core.TranslateUtils;
import com.fhs.trans.service.impl.TransService;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.context.annotation.Bean;
 
@AutoConfiguration
public class IailabTranslateAutoConfiguration {
 
    @Bean
    @SuppressWarnings({"InstantiationOfUtilityClass", "SpringJavaInjectionPointsAutowiringInspection"})
    public TranslateUtils translateUtils(TransService transService) {
        TranslateUtils.init(transService);
        return new TranslateUtils();
    }
 
}