新增任务管理
This commit is contained in:
parent
41c5c9363f
commit
0734bb4275
13
pom.xml
13
pom.xml
|
@ -45,6 +45,7 @@
|
|||
<googlecode.aviator.version>2.3.3</googlecode.aviator.version>
|
||||
<kotlin.stdlib.verson>1.3.70</kotlin.stdlib.verson>
|
||||
<zxing.version>3.4.0</zxing.version>
|
||||
<jimureport.version>1.4.2</jimureport.version>
|
||||
</properties>
|
||||
|
||||
<!-- 依赖声明 -->
|
||||
|
@ -351,6 +352,18 @@
|
|||
<artifactId>core</artifactId>
|
||||
<version>${zxing.version}</version>
|
||||
</dependency>
|
||||
<!--积木报表-->
|
||||
<dependency>
|
||||
<groupId>org.jeecgframework.jimureport</groupId>
|
||||
<artifactId>jimureport-spring-boot-starter</artifactId>
|
||||
<version>${jimureport.version}</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>com.googlecode.aviator</groupId>
|
||||
<artifactId>aviator</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
|
|
|
@ -25,8 +25,7 @@
|
|||
<!--积木报表-->
|
||||
<dependency>
|
||||
<groupId>org.jeecgframework.jimureport</groupId>
|
||||
<artifactId>spring-boot-starter-jimureport</artifactId>
|
||||
<version>1.3.21-beta</version>
|
||||
<artifactId>jimureport-spring-boot-starter</artifactId>
|
||||
</dependency>
|
||||
<!--test-->
|
||||
<dependency>
|
||||
|
|
|
@ -36,8 +36,6 @@ public class SnowApplication
|
|||
{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
// System.setProperty("spring.devtools.restart.enabled", "false");
|
||||
//SpringApplication.run(SnowApplication.class, args);
|
||||
ApplicationContext context=SpringApplication.run(SnowApplication.class, args);
|
||||
SpringContextUtil.setApplicationContext(context);
|
||||
|
||||
|
|
|
@ -170,17 +170,7 @@ sys:
|
|||
file:
|
||||
active: local
|
||||
|
||||
minidao:
|
||||
minidao :
|
||||
base-package: org.jeecg.modules.jmreport.desreport.dao*
|
||||
db-type: mysql
|
||||
show-sql: true
|
||||
#JimuReport[上传配置]
|
||||
jeecg :
|
||||
# local|minio|alioss
|
||||
uploadType: local
|
||||
# local
|
||||
path :
|
||||
#文件路径
|
||||
upload: /opt/upload
|
||||
|
||||
|
||||
|
|
|
@ -286,7 +286,10 @@ public class ShiroConfig
|
|||
filterChainDefinitionMap.put("/third/oauth/**", "anon");
|
||||
//填写表单
|
||||
filterChainDefinitionMap.put("/fromPreview", "anon");
|
||||
|
||||
//积木报表排除
|
||||
filterChainDefinitionMap.put("/jmreport/**", "anon");
|
||||
filterChainDefinitionMap.put("/**/*.js.map", "anon");
|
||||
filterChainDefinitionMap.put("/**/*.css.map", "anon");
|
||||
//注册校验
|
||||
filterChainDefinitionMap.put("/system/user/checkLoginNameUnique", "anon");
|
||||
filterChainDefinitionMap.put("/system/user/checkPhoneUnique", "anon");
|
||||
|
@ -307,9 +310,6 @@ public class ShiroConfig
|
|||
//新闻跳转页
|
||||
filterChainDefinitionMap.put("/front/news/**", "anon");
|
||||
|
||||
// 系统权限列表
|
||||
// filterChainDefinitionMap.putAll(SpringUtils.getBean(IMenuService.class).selectPermsAll());
|
||||
|
||||
Map<String, Filter> filters = new LinkedHashMap<String, Filter>();
|
||||
filters.put("onlineSession", onlineSessionFilter());
|
||||
filters.put("syncOnlineSession", syncOnlineSessionFilter());
|
||||
|
|
Loading…
Reference in New Issue