mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-26 09:11:52 +08:00
积木报表SQL脚本,拦截配置,以及组件扫描包配置
This commit is contained in:
parent
b4a1b93b39
commit
653520d85b
1622
sql/jimureport.mysql5.7.create.sql
Normal file
1622
sql/jimureport.mysql5.7.create.sql
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1,25 @@
|
|||||||
|
package cn.iocoder.yudao.module.visualization.framework.security.config;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.security.config.AuthorizeRequestsCustomizer;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
||||||
|
import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* visualization 模块的 Security 配置
|
||||||
|
*/
|
||||||
|
@Configuration("visualizationSecurityConfiguration")
|
||||||
|
public class SecurityConfiguration {
|
||||||
|
|
||||||
|
@Bean("visualizationAuthorizeRequestsCustomizer")
|
||||||
|
public AuthorizeRequestsCustomizer authorizeRequestsCustomizer() {
|
||||||
|
return new AuthorizeRequestsCustomizer() {
|
||||||
|
@Override
|
||||||
|
public void customize(ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry registry) {
|
||||||
|
registry.antMatchers("/jmreport/**").anonymous();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -13,7 +13,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|||||||
* @author 芋道源码
|
* @author 芋道源码
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("SpringComponentScan") // 忽略 IDEA 无法识别 ${yudao.info.base-package}
|
@SuppressWarnings("SpringComponentScan") // 忽略 IDEA 无法识别 ${yudao.info.base-package}
|
||||||
@SpringBootApplication(scanBasePackages = {"${yudao.info.base-package}.server", "${yudao.info.base-package}.module"})
|
@SpringBootApplication(scanBasePackages = {"${yudao.info.base-package}.server", "${yudao.info.base-package}.module", "org.jeecg.modules.jmreport"})
|
||||||
public class YudaoServerApplication {
|
public class YudaoServerApplication {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
@ -96,6 +96,7 @@ yudao:
|
|||||||
- /admin-api/infra/file/*/get/** # 获取图片,和租户无关
|
- /admin-api/infra/file/*/get/** # 获取图片,和租户无关
|
||||||
- /admin-api/system/sms/callback/* # 短信回调接口,无法带上租户编号
|
- /admin-api/system/sms/callback/* # 短信回调接口,无法带上租户编号
|
||||||
- /app-api/pay/order/notify/* # 支付回调通知,不携带租户编号
|
- /app-api/pay/order/notify/* # 支付回调通知,不携带租户编号
|
||||||
|
- /jmreport/list
|
||||||
ignore-tables:
|
ignore-tables:
|
||||||
- system_tenant
|
- system_tenant
|
||||||
- system_tenant_package
|
- system_tenant_package
|
||||||
@ -119,6 +120,22 @@ yudao:
|
|||||||
- infra_job_log
|
- infra_job_log
|
||||||
- infra_job_log
|
- infra_job_log
|
||||||
- infra_data_source_config
|
- infra_data_source_config
|
||||||
|
- jimu_dict
|
||||||
|
- jimu_dict_item
|
||||||
|
- jimu_report
|
||||||
|
- jimu_report_data_source
|
||||||
|
- jimu_report_db
|
||||||
|
- jimu_report_db_field
|
||||||
|
- jimu_report_db_param
|
||||||
|
- jimu_report_link
|
||||||
|
- jimu_report_map
|
||||||
|
- jimu_report_share
|
||||||
|
- rep_demo_dxtj
|
||||||
|
- rep_demo_employee
|
||||||
|
- rep_demo_gongsi
|
||||||
|
- rep_demo_jianpiao
|
||||||
|
- tmp_report_data_1
|
||||||
|
- tmp_report_data_income
|
||||||
sms-code: # 短信验证码相关的配置项
|
sms-code: # 短信验证码相关的配置项
|
||||||
expire-times: 10m
|
expire-times: 10m
|
||||||
send-frequency: 1m
|
send-frequency: 1m
|
||||||
@ -127,3 +144,8 @@ yudao:
|
|||||||
end-code: 9999 # 这里配置 9999 的原因是,测试方便。
|
end-code: 9999 # 这里配置 9999 的原因是,测试方便。
|
||||||
|
|
||||||
debug: false
|
debug: false
|
||||||
|
|
||||||
|
#积木报表配置
|
||||||
|
minidao :
|
||||||
|
base-package: org.jeecg.modules.jmreport.desreport.dao*
|
||||||
|
db-type: mysql
|
Loading…
Reference in New Issue
Block a user