diff --git a/blade-biz-common/src/main/java/org/springblade/common/constant/ModuleNameConstant.java b/blade-biz-common/src/main/java/org/springblade/common/constant/ModuleNameConstant.java index 580a59b0f..3439f30cc 100644 --- a/blade-biz-common/src/main/java/org/springblade/common/constant/ModuleNameConstant.java +++ b/blade-biz-common/src/main/java/org/springblade/common/constant/ModuleNameConstant.java @@ -73,4 +73,7 @@ public interface ModuleNameConstant { */ String APPLICATION_SUPERVISE_NAME = "logpm-supervise"+DEVAUTH; + + String APPLICATION_REPORT_NAME = "logpm-report"+DEVAUTH; + } diff --git a/blade-service-api/logpm-report-api/pom.xml b/blade-service-api/logpm-report-api/pom.xml new file mode 100644 index 000000000..71475145a --- /dev/null +++ b/blade-service-api/logpm-report-api/pom.xml @@ -0,0 +1,18 @@ + + + 4.0.0 + + + org.springblade + blade-service-api + 3.2.0.RELEASE + + + org.springblade + logpm-report-api + 3.2.0.RELEASE + jar + + diff --git a/blade-service-api/pom.xml b/blade-service-api/pom.xml index c9dd22fa4..5936a7eb1 100644 --- a/blade-service-api/pom.xml +++ b/blade-service-api/pom.xml @@ -37,6 +37,9 @@ logpm-patch-api logpm-supervise-api + + + logpm-report-api diff --git a/blade-service/logpm-report/pom.xml b/blade-service/logpm-report/pom.xml new file mode 100644 index 000000000..e5f26ea07 --- /dev/null +++ b/blade-service/logpm-report/pom.xml @@ -0,0 +1,54 @@ + + 4.0.0 + + org.springblade + blade-service + 3.2.0.RELEASE + + logpm-report + jar + logpm-report + + + org.springblade + blade-core-boot + + + org.springblade + blade-starter-swagger + + + org.springblade + blade-starter-excel + ${bladex.project.version} + + + org.springblade + blade-core-auto + provided + + + org.springblade + logpm-report-api + 3.2.0.RELEASE + + + + + + + io.fabric8 + docker-maven-plugin + + ${docker.fabric.skip} + + + + org.apache.maven.plugins + maven-antrun-plugin + + + + + diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/ReportApplication.java b/blade-service/logpm-report/src/main/java/com/logpm/report/ReportApplication.java new file mode 100644 index 000000000..7caa0d858 --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/ReportApplication.java @@ -0,0 +1,16 @@ +package com.logpm.report; + +import org.springblade.common.constant.ModuleNameConstant; +import org.springblade.core.cloud.client.BladeCloudApplication; +import org.springblade.core.launch.BladeApplication; + +/** + * @author chao + */ +@BladeCloudApplication +public class ReportApplication { + + public static void main(String[] args) { + BladeApplication.run(ModuleNameConstant.APPLICATION_REPORT_NAME, ReportApplication.class, args); + } + } diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/config/ReportConfiguration.java b/blade-service/logpm-report/src/main/java/com/logpm/report/config/ReportConfiguration.java new file mode 100644 index 000000000..538e8141c --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/config/ReportConfiguration.java @@ -0,0 +1,40 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.report.config; + + +import com.logpm.report.pros.ReportProperties; +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.context.properties.EnableConfigurationProperties; +import org.springframework.cloud.openfeign.EnableFeignClients; +import org.springframework.context.annotation.ComponentScan; +import org.springframework.context.annotation.Configuration; + +/** + * 配置feign、mybatis包名、properties + * + * @author chaos + */ +@Configuration(proxyBeanMethods = false) +@ComponentScan({"org.springblade", "com.logpm"}) +@EnableFeignClients({"org.springblade", "com.logpm"}) +@MapperScan({"org.springblade.**.mapper.**", "com.logpm.**.mapper.**"}) +@EnableConfigurationProperties(ReportProperties.class) +public class ReportConfiguration { + + +} diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/launcher/ReportLauncherServiceImpl.java b/blade-service/logpm-report/src/main/java/com/logpm/report/launcher/ReportLauncherServiceImpl.java new file mode 100644 index 000000000..91ec17394 --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/launcher/ReportLauncherServiceImpl.java @@ -0,0 +1,60 @@ +/* + * Copyright (c) 2018-2028, Chill Zhuang All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * Neither the name of the dreamlu.net developer nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * Author: Chill 庄骞 (smallchill@163.com) + */ +package com.logpm.report.launcher; + +import org.springblade.core.auto.service.AutoService; +import org.springblade.core.launch.constant.NacosConstant; +import org.springblade.core.launch.service.LauncherService; +import org.springblade.core.launch.utils.PropsUtil; +import org.springframework.boot.builder.SpringApplicationBuilder; + +import java.util.Properties; + +/** + * 启动参数拓展 + * + * @author Chill + */ +@AutoService(LauncherService.class) +public class ReportLauncherServiceImpl implements LauncherService { + + @Override + public void launcher(SpringApplicationBuilder builder, String appName, String profile, boolean isLocalDev) { + Properties props = System.getProperties(); + // 开启多数据源 + PropsUtil.setProperty(props, "spring.datasource.dynamic.enabled", "true"); + // 指定注册配置信息 + PropsUtil.setProperty(props, "spring.cloud.nacos.config.extension-configs[0].data-id", NacosConstant.dataId(appName, profile)); + PropsUtil.setProperty(props, "spring.cloud.nacos.config.extension-configs[0].group", NacosConstant.NACOS_CONFIG_GROUP); + PropsUtil.setProperty(props, "spring.cloud.nacos.config.extension-configs[0].refresh", NacosConstant.NACOS_CONFIG_REFRESH); + // 指定注册IP + // PropsUtil.setProperty(props, "spring.cloud.nacos.discovery.ip", "127.0.0.1"); + // 指定注册端口 + // PropsUtil.setProperty(props, "spring.cloud.nacos.discovery.port", "8200"); + // 自定义命名空间 + // PropsUtil.setProperty(props, "spring.cloud.nacos.config.namespace", LauncherConstant.NACOS_NAMESPACE); + // PropsUtil.setProperty(props, "spring.cloud.nacos.discovery.namespace", LauncherConstant.NACOS_NAMESPACE); + // 自定义分组 + // PropsUtil.setProperty(props, "spring.cloud.nacos.config.group", NacosConstant.NACOS_CONFIG_GROUP); + // PropsUtil.setProperty(props, "spring.cloud.nacos.discovery.group", NacosConstant.NACOS_CONFIG_GROUP); + } + + @Override + public int getOrder() { + return 20; + } +} diff --git a/blade-service/logpm-report/src/main/java/com/logpm/report/pros/ReportProperties.java b/blade-service/logpm-report/src/main/java/com/logpm/report/pros/ReportProperties.java new file mode 100644 index 000000000..8ee2ca3ad --- /dev/null +++ b/blade-service/logpm-report/src/main/java/com/logpm/report/pros/ReportProperties.java @@ -0,0 +1,21 @@ +package com.logpm.report.pros; + +import lombok.Data; +import org.springframework.boot.context.properties.ConfigurationProperties; + +/** + * FactoryProperties + * + * @author pref + */ +@Data +@ConfigurationProperties(prefix = "logpm") +public class ReportProperties { + /** + * 名称 + */ + private String name; + + + +} diff --git a/blade-service/logpm-report/src/main/resources/application-dev.yml b/blade-service/logpm-report/src/main/resources/application-dev.yml new file mode 100644 index 000000000..3db9ae091 --- /dev/null +++ b/blade-service/logpm-report/src/main/resources/application-dev.yml @@ -0,0 +1,45 @@ +#服务器端口 +server: + port: 8900 + +#数据源配置 +#spring: +# datasource: +# url: ${blade.datasource.dev.url} +# username: ${blade.datasource.dev.username} +# password: ${blade.datasource.dev.password} + +spring: + #排除DruidDataSourceAutoConfigure + autoconfigure: + exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure + datasource: + dynamic: + druid: + #通用校验配置 + validation-query: select 1 + #启用sql日志拦截器 + proxy-filters: + - sqlLogInterceptor + #设置默认的数据源或者数据源组,默认值即为master + primary: master + datasource: + master: + druid: + #独立校验配置 + validation-query: select 1 + #oracle校验 + #validation-query: select 1 from dual + url: ${blade.datasource.report.master.url} + username: ${blade.datasource.report.master.username} + password: ${blade.datasource.report.master.password} + slave: + druid: + #独立校验配置 + validation-query: select 1 + #oracle校验 + #validation-query: select 1 from dual + url: ${blade.datasource.report.slave.url} + username: ${blade.datasource.report.slave.username} + password: ${blade.datasource.report.slave.password} + diff --git a/blade-service/logpm-report/src/main/resources/application-prod.yml b/blade-service/logpm-report/src/main/resources/application-prod.yml new file mode 100644 index 000000000..3db9ae091 --- /dev/null +++ b/blade-service/logpm-report/src/main/resources/application-prod.yml @@ -0,0 +1,45 @@ +#服务器端口 +server: + port: 8900 + +#数据源配置 +#spring: +# datasource: +# url: ${blade.datasource.dev.url} +# username: ${blade.datasource.dev.username} +# password: ${blade.datasource.dev.password} + +spring: + #排除DruidDataSourceAutoConfigure + autoconfigure: + exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure + datasource: + dynamic: + druid: + #通用校验配置 + validation-query: select 1 + #启用sql日志拦截器 + proxy-filters: + - sqlLogInterceptor + #设置默认的数据源或者数据源组,默认值即为master + primary: master + datasource: + master: + druid: + #独立校验配置 + validation-query: select 1 + #oracle校验 + #validation-query: select 1 from dual + url: ${blade.datasource.report.master.url} + username: ${blade.datasource.report.master.username} + password: ${blade.datasource.report.master.password} + slave: + druid: + #独立校验配置 + validation-query: select 1 + #oracle校验 + #validation-query: select 1 from dual + url: ${blade.datasource.report.slave.url} + username: ${blade.datasource.report.slave.username} + password: ${blade.datasource.report.slave.password} + diff --git a/blade-service/logpm-report/src/main/resources/application-test.yml b/blade-service/logpm-report/src/main/resources/application-test.yml new file mode 100644 index 000000000..3db9ae091 --- /dev/null +++ b/blade-service/logpm-report/src/main/resources/application-test.yml @@ -0,0 +1,45 @@ +#服务器端口 +server: + port: 8900 + +#数据源配置 +#spring: +# datasource: +# url: ${blade.datasource.dev.url} +# username: ${blade.datasource.dev.username} +# password: ${blade.datasource.dev.password} + +spring: + #排除DruidDataSourceAutoConfigure + autoconfigure: + exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure + datasource: + dynamic: + druid: + #通用校验配置 + validation-query: select 1 + #启用sql日志拦截器 + proxy-filters: + - sqlLogInterceptor + #设置默认的数据源或者数据源组,默认值即为master + primary: master + datasource: + master: + druid: + #独立校验配置 + validation-query: select 1 + #oracle校验 + #validation-query: select 1 from dual + url: ${blade.datasource.report.master.url} + username: ${blade.datasource.report.master.username} + password: ${blade.datasource.report.master.password} + slave: + druid: + #独立校验配置 + validation-query: select 1 + #oracle校验 + #validation-query: select 1 from dual + url: ${blade.datasource.report.slave.url} + username: ${blade.datasource.report.slave.username} + password: ${blade.datasource.report.slave.password} + diff --git a/blade-service/logpm-report/src/main/resources/application.yml b/blade-service/logpm-report/src/main/resources/application.yml new file mode 100644 index 000000000..e06f3357f --- /dev/null +++ b/blade-service/logpm-report/src/main/resources/application.yml @@ -0,0 +1,32 @@ +#mybatis-plus配置 +mybatis-plus: + mapper-locations: classpath:com/logpm/**/mapper/*Mapper.xml + #实体扫描,多个package用逗号或者分号分隔 + typeAliasesPackage: com.logpm.**.entity + +#swagger扫描路径配置 +swagger: + base-packages: + - org.springblade + - com.logpm + +#oss配置 +oss: + enabled: true + name: minio + tenant-mode: false + endpoint: http://8.137.14.82:9000 + access-key: minio + secret-key: 123123123 + bucket-name: bladex + + +logging: + config: classpath:logback.xml + + +spring: + main: + allow-circular-references: true + + diff --git a/blade-service/logpm-report/src/main/resources/logback.xml b/blade-service/logpm-report/src/main/resources/logback.xml new file mode 100644 index 000000000..7170050de --- /dev/null +++ b/blade-service/logpm-report/src/main/resources/logback.xml @@ -0,0 +1,40 @@ + + + + logback + + + + + + + + + + + + ${CONSOLE_LOG_PATTERN} + utf8 + + + + + ${log.path} + + ${log.path}.%d{yyyy-MM-dd}.zip + + + %date %level [%thread] %logger{36} [%file : %line] %msg%n + + + + + + + + + + diff --git a/blade-service/pom.xml b/blade-service/pom.xml index 83162614e..7feb75f58 100644 --- a/blade-service/pom.xml +++ b/blade-service/pom.xml @@ -42,6 +42,7 @@ logpm-patch logpm-supervise + logpm-report