Skip to content

Instantly share code, notes, and snippets.

@wangxi761
Created March 31, 2020 11:20
Show Gist options
  • Save wangxi761/b9dcca18c4d2709e4e35e8ae4672d84e to your computer and use it in GitHub Desktop.
Save wangxi761/b9dcca18c4d2709e4e35e8ae4672d84e to your computer and use it in GitHub Desktop.
demo
package com.example.demo.gaia;
import com.jayway.jsonpath.JsonPath;
import javax.annotation.Resource;
public class LoginFlow extends AbstractFlow {
@Resource(name = "other")
AbstractFlow other_flow;
@Override
public void before() {
}
@Override
public void test() {
vars.put("password", 1123);
var o = vars.get("flow1.password");
String a= JsonPath.parse("").toString();
other_flow.run();
}
@Override
public void after() {
}
@Override
public void doException(Exception e) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment