- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.mozilla.zest.core.v1.ZestRequest.setUrl()
方法的一些代码示例,展示了ZestRequest.setUrl()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZestRequest.setUrl()
方法的具体详情如下:
包路径:org.mozilla.zest.core.v1.ZestRequest
类名称:ZestRequest
方法名:setUrl
[英]Sets the url.
[中]设置url。
代码示例来源:origin: mozilla/zest
@Override
public void setPrefix(String oldPrefix, String newPrefix) throws MalformedURLException {
if (this.getUrl() != null && this.getUrl().toString().startsWith(oldPrefix)) {
String urlStr = newPrefix + getUrl().toString().substring(oldPrefix.length());
this.setUrl(new URL(urlStr));
} else {
throw new IllegalArgumentException(
"Request url " + getUrl() + " does not start with " + oldPrefix);
}
}
代码示例来源:origin: mozilla/zest
/**
* Replace tokens.
*
* @param tokens the tokens
*/
public void replaceTokens(ZestVariables tokens) {
if (this.urlToken != null) {
this.setUrlToken(tokens.replaceInString(this.urlToken, true));
try {
this.setUrl(new URL(this.getUrlToken()));
} catch (MalformedURLException e) {
// Ignore
}
} else if (this.url != null) {
try {
this.setUrl(new URL(tokens.replaceInString(this.url.toString(), true)));
} catch (MalformedURLException e) {
// Ignore
}
}
this.setMethod(tokens.replaceInString(this.getMethod(), false));
this.setHeaders(tokens.replaceInString(this.getHeaders(), false));
this.setData(tokens.replaceInString(this.getData(), false));
for (ZestCookie cookie : this.cookies) {
cookie.setDomain(tokens.replaceInString(cookie.getDomain(), false));
cookie.setName(tokens.replaceInString(cookie.getName(), false));
cookie.setValue(tokens.replaceInString(cookie.getValue(), false));
cookie.setPath(tokens.replaceInString(cookie.getPath(), false));
}
}
代码示例来源:origin: mozilla/zest
request.setUrl(url);
String urlToken = "http://{{host}}/";
request.setUrlToken(urlToken);
代码示例来源:origin: mozilla/zest
private static ZestRequest createRequest(String url) throws Exception {
ZestRequest request = createRequest();
request.setUrl(new URL(url));
return request;
}
}
代码示例来源:origin: mozilla/zest
@Override
public ZestRequest deepCopy() {
ZestRequest zr = new ZestRequest(this.getIndex());
zr.setUrl(this.url);
zr.setUrlToken(this.urlToken);
zr.setData(this.data);
zr.setMethod(this.method);
zr.setHeaders(this.headers);
zr.setFollowRedirects(this.followRedirects);
zr.setTimestamp(this.timestamp);
if (this.getResponse() != null) {
zr.setResponse(this.getResponse().deepCopy());
}
for (ZestAssertion zt : this.getAssertions()) {
zr.addAssertion((ZestAssertion) zt.deepCopy());
}
for (ZestCookie cookie : this.cookies) {
zr.addCookie(
new ZestCookie(
cookie.getDomain(),
cookie.getName(),
cookie.getValue(),
cookie.getPath(),
cookie.getExpiryDate(),
cookie.isSecure()));
}
zr.setEnabled(this.isEnabled());
return zr;
}
代码示例来源:origin: mozilla/zest
@Test
public void testIsTrueFalse() {
ZestExpressionURL urlExpr = new ZestExpressionURL();
urlExpr.setIncludeRegexes(includeStrings);
urlExpr.setExcludeRegexes(excludeStrings);
try {
ZestRequest request = new ZestRequest();
request.setUrl(new URL("http://www.PONG1.com"));
assertFalse(urlExpr.isTrue(new TestRuntime(request)));
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testIsTrueDifferentURL() {
ZestExpressionURL urlExpr = new ZestExpressionURL();
urlExpr.setIncludeRegexes(includeStrings);
urlExpr.setExcludeRegexes(excludeStrings);
try {
ZestRequest request = new ZestRequest();
request.setUrl(new URL("http://www.asdf.com"));
assertFalse(urlExpr.isTrue(new TestRuntime(request)));
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
代码示例来源:origin: mozilla/zest
@Test
public void testIsTrue() {
ZestExpressionURL urlExpr = new ZestExpressionURL();
urlExpr.setIncludeRegexes(includeStrings);
urlExpr.setExcludeRegexes(excludeStrings);
try {
ZestRequest request = new ZestRequest();
request.setUrl(new URL("http://www.PING1.com"));
assertTrue(urlExpr.isTrue(new TestRuntime(request)));
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
代码示例来源:origin: mozilla/zest
String method = "POST";
request.setMethod(method);
request.setUrl(url);
String headers =
"User-Agent: xyz\r\n"
代码示例来源:origin: mozilla/zest
request.setMethod("GET");
request.setHeaders(requestH);
request.setUrl(new URL("http://localhost:8080/bodgeit/"));
代码示例来源:origin: mozilla/zest
ZestRequest req = new ZestRequest();
req.setUrl(new URL("http://www.example.com/app/{{token1}}"));
req.setHeaders("Set-Cookie: test={{token2}}");
req.setData("test={{token3}}&user=12{{token3}}34");
代码示例来源:origin: mozilla/zest
ZestRequest req = new ZestRequest();
req.setUrl(new URL("http://www.example.com/app/{{token1}}"));
req.setHeaders("Set-Cookie: test={{token2}}");
req.setData("test={{token3}}&user=12{{token3}}34");
是否有任何方法可以获取 Zest (Eclipse) 中图形的布局(节点、线条、弯点)坐标?我尝试了几种方法,使用与 Zest 一起提供的 Draw2D,但我不知道如何使 Zest 对象成为 Draw
我正在使用 org.eclipse.zest.core.viewers.GraphViewer.setLayoutAlgorithm 来设置布局算法。 我的问题是,当渲染图形时,节点绘制得非常靠近彼此
有可能以这样的方式结束: ServiceChild (class) extends (or only partial implements) Service and overrides say
我正在使用 RCP 和 ZEST 创建一个应用程序来可视化图形。我的问题是:是否可以缩放在 ZEST(任何 ZEST 或 RCP api 或插件)上绘制的图形? 提前致谢-拉 git 最佳答案 我查看
我想更改节点和连接的一些视觉属性。如何做得更好?我发现视觉信息应用于从 org.eclipse.zest.core.viewers.GraphViewer.getFactory() 返回的模型工厂。共
我有一个相当大的 ZEST 树,显示哈希树(Merkletree)。由于其大小和有限的可用空间,它被压缩得非常严重,您无法再阅读它: 因此,我希望能够占据比实际外壳更多的空间,并实现滚动/拖动选项来使
我正在尝试使用 JAVA 中的 ZEST 框架绘制图表。代码的预期工作如下: 1) Shell 设置为 FormLayout。 2) 使用 FormData 自定义添加了标签、文本框和按钮。 3) 在
本文整理了Java中org.mozilla.zest.impl.ZestBasicRunner类的一些代码示例,展示了ZestBasicRunner类的具体用法。这些代码示例主要来源于Github/S
我正在开发一个项目,我打算在 JAVA 中创建一个类,用它来创建一个图表。详细地说,我想创建 2 个接口(interface) - VERTEX 和 EDGE,每个接口(interface)都有 ad
我已经使用 Zest GraphViewer 一个多星期了,现在试图发现它可以为我的应用程序做些什么,但到目前为止我还无法让它的行为符合我的要求。 我希望有人可以指出我需要的资源,因为我在 Googl
我开发了一个 eclipse 插件,用于使用 GEF-Zest 生成图形。我正在使用 SpringLayoutAlgorithm 作为布局算法(我也尝试过其他布局),但节点和边缘仍然相互重叠,从而创建
本文整理了Java中org.mozilla.zest.core.v1.ZestResponse类的一些代码示例,展示了ZestResponse类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopTokenStringSet类的一些代码示例,展示了ZestLoopTokenStringSet类的具体用法。这些
本文整理了Java中org.mozilla.zest.core.v1.ZestVariables类的一些代码示例,展示了ZestVariables类的具体用法。这些代码示例主要来源于Github/St
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopTokenSet类的一些代码示例,展示了ZestLoopTokenSet类的具体用法。这些代码示例主要来源于Git
本文整理了Java中org.mozilla.zest.core.v1.ZestFieldDefinition类的一些代码示例,展示了ZestFieldDefinition类的具体用法。这些代码示例主要
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopFile类的一些代码示例,展示了ZestLoopFile类的具体用法。这些代码示例主要来源于Github/Stac
本文整理了Java中org.mozilla.zest.core.v1.ZestLoopInteger类的一些代码示例,展示了ZestLoopInteger类的具体用法。这些代码示例主要来源于Githu
本文整理了Java中org.mozilla.zest.core.v1.ZestJSON类的一些代码示例,展示了ZestJSON类的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中org.mozilla.zest.core.v1.ZestExpressionResponseTime类的一些代码示例,展示了ZestExpressionResponseTime类
我是一名优秀的程序员,十分优秀!