no message
parent
836f2b40af
commit
7132ead78b
@ -0,0 +1,5 @@
|
||||
package com.engine.tjbankSocket;
|
||||
|
||||
public interface SocketExecute {
|
||||
public String execute(String param);
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.engine.tjbankSocket.impl;
|
||||
|
||||
import com.engine.tjbankSocket.SocketExecute;
|
||||
import com.engine.web.tjbk.TJBKWorkFlow;
|
||||
|
||||
public class GetToCountSocketExecute implements SocketExecute {
|
||||
TJBKWorkFlow tjbkWorkFlow = new TJBKWorkFlow();
|
||||
@Override
|
||||
public String execute(String param) {
|
||||
return tjbkWorkFlow.getToDoCount(param.toString());
|
||||
}
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!--
|
||||
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
|
||||
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
|
||||
-->
|
||||
<application generated-by="intellij" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_3.xsd">
|
||||
|
||||
<id>TestJrebel</id>
|
||||
|
||||
<classpath>
|
||||
<dir name="D:/Project/TestJrebel/out/production/TestJrebel">
|
||||
</dir>
|
||||
</classpath>
|
||||
|
||||
</application>
|
Loading…
Reference in New Issue