对比新文件 |
| | |
| | | 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(); |
| | | } |
| | | |
| | | } |