增加动态脚本 crud

This commit is contained in:
zhouhao
2017-08-28 18:21:50 +08:00
parent 18bdc3c9cc
commit 270dea02e8
18 changed files with 688 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>hsweb-system-script</artifactId>
<groupId>org.hswebframework.web</groupId>
<version>3.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>hsweb-system-script-controller</artifactId>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hswebframework.web</groupId>
<artifactId>hsweb-system-script-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hswebframework.web</groupId>
<artifactId>hsweb-commons-controller</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</project>

View File

@@ -0,0 +1,35 @@
package org.hswebframework.web.controller.script;
import org.hswebframework.web.authorization.annotation.Authorize;
import org.hswebframework.web.commons.entity.param.QueryParamEntity;
import org.hswebframework.web.controller.SimpleGenericEntityController;
import org.hswebframework.web.entity.script.ScriptEntity;
import org.hswebframework.web.logging.AccessLogger;
import org.hswebframework.web.service.script.ScriptService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 动态脚本
*
* @author hsweb-generator-online
*/
@RestController
@RequestMapping("${hsweb.web.mappings.script:script}")
@Authorize(permission = "script")
@AccessLogger("动态脚本")
public class ScriptController implements SimpleGenericEntityController<ScriptEntity, String, QueryParamEntity> {
private ScriptService scriptService;
@Autowired
public void setScriptService(ScriptService scriptService) {
this.scriptService = scriptService;
}
@Override
public ScriptService getService() {
return scriptService;
}
}