10 changed files with 321 additions and 1 deletions
@ -1,3 +1,5 @@ |
|||||||
# demo-web-service |
# demo-web-service |
||||||
|
|
||||||
最早一代的web服务接口(op/cmd)demo示例 |
最早一代的web服务接口(op/cmd)demo示例<br/> |
||||||
|
demo生效后预览模板,然后浏览器控制台调用<br/> |
||||||
|
op=demo&cmd=test1或test 即可访问对应的服务 |
||||||
|
@ -0,0 +1,124 @@ |
|||||||
|
|
||||||
|
apply plugin: 'java' |
||||||
|
|
||||||
|
[compileJava,compileTestJava]*.options*.encoding = 'UTF-8' |
||||||
|
|
||||||
|
ext { |
||||||
|
/** |
||||||
|
* 项目中依赖的jar的路径 |
||||||
|
* 1.如果依赖的jar需要打包到zip中,放置在lib根目录下 |
||||||
|
* 2.如果依赖的jar仅仅是编译时需要,防止在lib下子目录下即可 |
||||||
|
*/ |
||||||
|
libPath = "$projectDir/../webroot/WEB-INF/lib" |
||||||
|
|
||||||
|
/** |
||||||
|
* 是否对插件的class进行加密保护,防止反编译 |
||||||
|
*/ |
||||||
|
guard = false |
||||||
|
|
||||||
|
def pluginInfo = getPluginInfo() |
||||||
|
pluginPre = "fine-plugin" |
||||||
|
pluginName = pluginInfo.id |
||||||
|
pluginVersion = pluginInfo.version |
||||||
|
|
||||||
|
outputPath = "$projectDir/../webroot/WEB-INF/plugins/plugin-" + pluginName + "-1.0/classes" |
||||||
|
} |
||||||
|
|
||||||
|
group = 'com.fr.plugin' |
||||||
|
version = '10.0' |
||||||
|
sourceCompatibility = '8' |
||||||
|
|
||||||
|
sourceSets { |
||||||
|
main { |
||||||
|
java.outputDir = file(outputPath) |
||||||
|
output.resourcesDir = file(outputPath) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
ant.importBuild("encrypt.xml") |
||||||
|
//定义ant变量 |
||||||
|
ant.projectDir = projectDir |
||||||
|
ant.references["compile.classpath"] = ant.path { |
||||||
|
fileset(dir: libPath, includes: '**/*.jar') |
||||||
|
fileset(dir: ".",includes:"**/*.jar" ) |
||||||
|
} |
||||||
|
|
||||||
|
classes.dependsOn('clean') |
||||||
|
|
||||||
|
task copyFiles(type: Copy,dependsOn: 'classes'){ |
||||||
|
from outputPath |
||||||
|
into "$projectDir/classes" |
||||||
|
} |
||||||
|
|
||||||
|
task preJar(type:Copy,dependsOn: guard ? 'compile_encrypt_javas' : 'compile_plain_javas'){ |
||||||
|
from "$projectDir/classes" |
||||||
|
into "$projectDir/transform-classes" |
||||||
|
include "**/*.*" |
||||||
|
} |
||||||
|
jar.dependsOn("preJar") |
||||||
|
|
||||||
|
task makeJar(type: Jar,dependsOn: preJar){ |
||||||
|
from fileTree(dir: "$projectDir/transform-classes") |
||||||
|
baseName pluginPre |
||||||
|
appendix pluginName |
||||||
|
version pluginVersion |
||||||
|
destinationDir = file("$buildDir/libs") |
||||||
|
|
||||||
|
doLast(){ |
||||||
|
delete file("$projectDir/classes") |
||||||
|
delete file("$projectDir/transform-classes") |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
task copyFile(type: Copy,dependsOn: ["makeJar"]){ |
||||||
|
from "$buildDir/libs" |
||||||
|
from("$projectDir/lib") { |
||||||
|
include "*.jar" |
||||||
|
} |
||||||
|
from "$projectDir/plugin.xml" |
||||||
|
into file("$buildDir/temp/plugin") |
||||||
|
} |
||||||
|
|
||||||
|
task zip(type:Zip,dependsOn:["copyFile"]){ |
||||||
|
from "$buildDir/temp/plugin" |
||||||
|
destinationDir file("$buildDir/install") |
||||||
|
baseName pluginPre |
||||||
|
appendix pluginName |
||||||
|
version pluginVersion |
||||||
|
} |
||||||
|
|
||||||
|
//控制build时包含哪些文件,排除哪些文件 |
||||||
|
processResources { |
||||||
|
// exclude everything |
||||||
|
// 用*.css没效果 |
||||||
|
// exclude '**/*.css' |
||||||
|
// except this file |
||||||
|
// include 'xx.xml' |
||||||
|
} |
||||||
|
|
||||||
|
/*读取plugin.xml中的version*/ |
||||||
|
def getPluginInfo(){ |
||||||
|
def xmlFile = file("plugin.xml") |
||||||
|
if (!xmlFile.exists()) { |
||||||
|
return ["id":"none", "version":"1.0.0"] |
||||||
|
} |
||||||
|
def plugin = new XmlParser().parse(xmlFile) |
||||||
|
def version = plugin.version[0].text() |
||||||
|
def id = plugin.id[0].text() |
||||||
|
return ["id":id,"version":version] |
||||||
|
} |
||||||
|
|
||||||
|
repositories { |
||||||
|
mavenLocal() |
||||||
|
maven { |
||||||
|
url = uri('http://mvn.finedevelop.com/repository/maven-public/') |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
dependencies { |
||||||
|
//使用本地jar |
||||||
|
implementation fileTree(dir: 'lib', include: ['**/*.jar']) |
||||||
|
implementation fileTree(dir: libPath, include: ['**/*.jar']) |
||||||
|
} |
||||||
|
|
||||||
|
|
@ -0,0 +1,13 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||||
|
<project> |
||||||
|
<target name="compile_encrypt_javas" depends="copyFiles"> |
||||||
|
<echo message="加密文件"/> |
||||||
|
<echo message="${projectDir}"/> |
||||||
|
<taskdef name="pretreatment" classname="com.fr.plugin.pack.PluginPretreatmentTask"> |
||||||
|
<classpath refid="compile.classpath"/> |
||||||
|
</taskdef> |
||||||
|
<pretreatment baseDir="${projectDir}"/> |
||||||
|
</target> |
||||||
|
<target name="compile_plain_javas" depends="copyFiles"> |
||||||
|
</target> |
||||||
|
</project> |
Binary file not shown.
@ -0,0 +1,18 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><plugin> |
||||||
|
<id>com.tptj.demo.hg.web.service.v10</id> |
||||||
|
<name><![CDATA[ 报表web接口 ]]></name> |
||||||
|
<active>yes</active> |
||||||
|
<version>1.0</version> |
||||||
|
<env-version>10.0</env-version> |
||||||
|
<vendor>tptj</vendor> |
||||||
|
<jartime>2019-07-18</jartime> |
||||||
|
<description><![CDATA[ ]]></description> |
||||||
|
<change-notes><![CDATA[]]></change-notes> |
||||||
|
<main-package>com.tptj.demo.hg.web.service</main-package> |
||||||
|
<function-recorder class="com.tptj.demo.hg.web.service.DemoBasic"/> |
||||||
|
<extra-core> |
||||||
|
<WebService class="com.tptj.demo.hg.web.service.DemoBasic"/> |
||||||
|
<WebService class="com.tptj.demo.hg.web.service.DemoDefaultCMD"/> |
||||||
|
<WebService class="com.tptj.demo.hg.web.service.DemoNoSessionIDCMD"/> |
||||||
|
</extra-core> |
||||||
|
</plugin> |
@ -0,0 +1,24 @@ |
|||||||
|
package com.tptj.demo.hg.web.service; |
||||||
|
|
||||||
|
import com.fanruan.api.web.FlushKit; |
||||||
|
import com.fr.web.core.ActionNoSessionCMD; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author 秃破天际 |
||||||
|
* @version 10.0 |
||||||
|
* Created by 秃破天际 on 2021-03-18 |
||||||
|
**/ |
||||||
|
public class ActionTest extends ActionNoSessionCMD { |
||||||
|
@Override |
||||||
|
public String getCMD() { |
||||||
|
return "test"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void actionCMD(HttpServletRequest req, HttpServletResponse res) throws Exception { |
||||||
|
FlushKit.printAsString(res,"Test Action!"); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,24 @@ |
|||||||
|
package com.tptj.demo.hg.web.service; |
||||||
|
|
||||||
|
import com.fanruan.api.web.FlushKit; |
||||||
|
import com.fr.web.core.ActionNoSessionCMD; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author 秃破天际 |
||||||
|
* @version 10.0 |
||||||
|
* Created by 秃破天际 on 2021-03-18 |
||||||
|
**/ |
||||||
|
public class ActionTest1 extends ActionNoSessionCMD { |
||||||
|
@Override |
||||||
|
public String getCMD() { |
||||||
|
return "test1"; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void actionCMD(HttpServletRequest req, HttpServletResponse res, String sessionID) throws Exception { |
||||||
|
FlushKit.printAsString(res,"Test1 Action!"+sessionID); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,41 @@ |
|||||||
|
package com.tptj.demo.hg.web.service; |
||||||
|
|
||||||
|
import com.fr.intelli.record.Focus; |
||||||
|
import com.fr.record.analyzer.EnableMetrics; |
||||||
|
import com.fr.stable.fun.Service; |
||||||
|
import com.fr.stable.web.RequestCMDReceiver; |
||||||
|
import com.fr.web.core.WebActionsDispatcher; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author 秃破天际 |
||||||
|
* @version 10.0 |
||||||
|
* Created by 秃破天际 on 2021-03-18 |
||||||
|
* 这也是为数不多的不用继承Abstract类的插件接口 |
||||||
|
* 这个接口虽然注册在extra-core 但是在10.0以后只有报表请求才会用到了 |
||||||
|
**/ |
||||||
|
@EnableMetrics |
||||||
|
public class DemoBasic implements Service { |
||||||
|
@Override |
||||||
|
public String actionOP() { |
||||||
|
return "demo"; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 一个cmd对应一个RequestCMDReceiver |
||||||
|
*/ |
||||||
|
private RequestCMDReceiver [] actions = new RequestCMDReceiver[]{ |
||||||
|
new ActionTest(), |
||||||
|
new ActionTest1() |
||||||
|
}; |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
@Focus(id = "com.tptj.demo.hg.web.service.v10",text = "报表web接口") |
||||||
|
public void process(HttpServletRequest request, HttpServletResponse response, String op, String sessionID ) throws Exception { |
||||||
|
//最常见的调用方式就是这种了
|
||||||
|
WebActionsDispatcher.dealForActionCMD( request, response, sessionID, actions); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package com.tptj.demo.hg.web.service; |
||||||
|
|
||||||
|
import com.fr.stable.fun.Service; |
||||||
|
import com.fr.stable.web.RequestCMDReceiver; |
||||||
|
import com.fr.web.core.WebActionsDispatcher; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author 秃破天际 |
||||||
|
* @version 10.0 |
||||||
|
* Created by 秃破天际 on 2021-03-18 |
||||||
|
**/ |
||||||
|
public class DemoDefaultCMD implements Service { |
||||||
|
@Override |
||||||
|
public String actionOP() { |
||||||
|
return "dftcmd"; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 一个cmd对应一个RequestCMDReceiver |
||||||
|
*/ |
||||||
|
private RequestCMDReceiver[] actions = new RequestCMDReceiver[]{ |
||||||
|
new ActionTest(), |
||||||
|
new ActionTest1() |
||||||
|
}; |
||||||
|
/** |
||||||
|
* 如果使用WebActionsDispatcher.dealForActionDefaultCmd时,请求中没有传递cmd这个参数,则可以传递一个默认的cmd进去 |
||||||
|
*/ |
||||||
|
private static final String dftCmd = "test"; |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public void process(HttpServletRequest request, HttpServletResponse response, String op, String sessionID ) throws Exception { |
||||||
|
WebActionsDispatcher.dealForActionDefaultCmd( request, response, sessionID, actions, dftCmd); |
||||||
|
} |
||||||
|
} |
||||||
|
|
@ -0,0 +1,35 @@ |
|||||||
|
package com.tptj.demo.hg.web.service; |
||||||
|
|
||||||
|
import com.fr.stable.fun.impl.NoSessionIDService; |
||||||
|
import com.fr.web.core.ActionNoSessionCMD; |
||||||
|
import com.fr.web.core.WebActionsDispatcher; |
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author 秃破天际 |
||||||
|
* @version 10.0 |
||||||
|
* Created by 秃破天际 on 2021-03-18 |
||||||
|
**/ |
||||||
|
public class DemoNoSessionIDCMD extends NoSessionIDService { |
||||||
|
@Override |
||||||
|
public String actionOP() { |
||||||
|
return "nosid"; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 一个cmd对应一个ActionNoSessionCMD |
||||||
|
*/ |
||||||
|
private ActionNoSessionCMD[] actions = new ActionNoSessionCMD[]{ |
||||||
|
new ActionTest(), |
||||||
|
new ActionTest1() |
||||||
|
}; |
||||||
|
|
||||||
|
@Override |
||||||
|
public void process(HttpServletRequest request, HttpServletResponse response, String op ) throws Exception { |
||||||
|
//底层调用其实都差不多
|
||||||
|
WebActionsDispatcher.dealForActionNoSessionIDCMD(request,response,actions); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue