blade-tool/blade-core-log/src/main/java/org/springblade/core/log/config/BladeLogToolAutoConfigurati...

72 lines
2.1 KiB
Java
Raw Normal View History

2018-12-24 11:58:45 +08:00
/**
* Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com).
* <p>
2018-12-29 18:46:01 +08:00
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
2018-12-24 11:58:45 +08:00
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.gnu.org/licenses/lgpl.html
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springblade.core.log.config;
import lombok.AllArgsConstructor;
import org.springblade.core.launch.props.BladeProperties;
import org.springblade.core.launch.server.ServerInfo;
2018-12-24 11:58:45 +08:00
import org.springblade.core.log.aspect.ApiLogAspect;
import org.springblade.core.log.event.ApiLogListener;
import org.springblade.core.log.event.ErrorLogListener;
import org.springblade.core.log.event.UsualLogListener;
2018-12-24 11:58:45 +08:00
import org.springblade.core.log.feign.ILogClient;
import org.springblade.core.log.logger.BladeLogger;
import org.springframework.boot.autoconfigure.AutoConfiguration;
2018-12-24 11:58:45 +08:00
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.context.annotation.Bean;
/**
* 日志工具自动配置
2018-12-27 13:29:11 +08:00
*
2018-12-29 18:43:11 +08:00
* @author Chill
2018-12-24 11:58:45 +08:00
*/
@AutoConfiguration
2018-12-24 11:58:45 +08:00
@AllArgsConstructor
@ConditionalOnWebApplication
public class BladeLogToolAutoConfiguration {
2018-12-27 13:29:11 +08:00
private final ILogClient logService;
private final ServerInfo serverInfo;
private final BladeProperties bladeProperties;
2018-12-24 11:58:45 +08:00
2018-12-27 13:29:11 +08:00
@Bean
public ApiLogAspect apiLogAspect() {
return new ApiLogAspect();
}
2018-12-24 11:58:45 +08:00
2018-12-27 13:29:11 +08:00
@Bean
public BladeLogger bladeLogger() {
return new BladeLogger();
}
2018-12-24 11:58:45 +08:00
2018-12-27 13:29:11 +08:00
@Bean
public ApiLogListener apiLogListener() {
return new ApiLogListener(logService, serverInfo, bladeProperties);
}
2018-12-24 11:58:45 +08:00
2018-12-27 13:29:11 +08:00
@Bean
public ErrorLogListener errorEventListener() {
return new ErrorLogListener(logService, serverInfo, bladeProperties);
}
2018-12-24 11:58:45 +08:00
2018-12-27 13:29:11 +08:00
@Bean
2018-12-28 15:17:35 +08:00
public UsualLogListener bladeEventListener() {
return new UsualLogListener(logService, serverInfo, bladeProperties);
2018-12-27 13:29:11 +08:00
}
2018-12-24 11:58:45 +08:00
}