新增文件管理模块

This commit is contained in:
thinkgem
2019-04-11 22:38:34 +08:00
parent 532ca319ec
commit e9763efaa7
3 changed files with 38 additions and 0 deletions

View File

@@ -12,6 +12,9 @@
<dependent-module archiveName="jeesite-module-swagger-4.1.5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/jeesite-module-swagger/jeesite-module-swagger">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="jeesite-module-filemanager-4.1.5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/jeesite-module-filemanager/jeesite-module-filemanager">
<dependency-type>uses</dependency-type>
</dependent-module>
<dependent-module archiveName="jeesite-module-weboffice-4.1.5-SNAPSHOT.jar" deploy-path="/WEB-INF/lib" handle="module:/resource/jeesite-module-weboffice/jeesite-module-weboffice">
<dependency-type>uses</dependency-type>
</dependent-module>

View File

@@ -44,6 +44,13 @@
<version>${project.parent.version}</version>
</dependency>
<!-- 文件管理 -->
<dependency>
<groupId>com.jeesite</groupId>
<artifactId>jeesite-module-filemanager</artifactId>
<version>${project.parent.version}</version>
</dependency>
<!-- Office在线预览 -->
<dependency>
<groupId>com.jeesite</groupId>

View File

@@ -0,0 +1,28 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.test;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.Rollback;
import org.springframework.test.context.ActiveProfiles;
import com.jeesite.modules.Application;
/**
* 初始化文件管理表数据
* @author ThinkGem
* @version 2019-4-7
*/
@ActiveProfiles("test")
@SpringBootTest(classes=Application.class)
@Rollback(false)
public class InitFilemanagerData extends com.jeesite.modules.filemanager.db.InitFilemanagerData {
@Test
public void initCoreData() throws Exception{
createTable();
}
}