- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.springframework.ide.vscode.commons.yaml.path.YamlPath
类的一些代码示例,展示了YamlPath
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YamlPath
类的具体详情如下:
包路径:org.springframework.ide.vscode.commons.yaml.path.YamlPath
类名称:YamlPath
暂无
代码示例来源:origin: spring-projects/sts4
public YamlPath dropLast() {
return dropLast(1);
}
代码示例来源:origin: spring-projects/sts4
public YamlPath commonPrefix(YamlPath other) {
ArrayList<YamlPathSegment> common = new ArrayList<>(this.size());
for (int i = 0; i < this.size(); i++) {
YamlPathSegment s = this.getSegment(i);
if (s.equals(other.getSegment(i))) {
common.add(s);
}
}
return new YamlPath(common);
}
代码示例来源:origin: spring-projects/sts4
public YamlPath tail() {
return dropFirst(1);
}
代码示例来源:origin: spring-projects/sts4
public YamlPath dropLast(int dropCount) {
if (dropCount>=size()) {
return EMPTY;
}
if (dropCount==0) {
return this;
}
YamlPathSegment[] newPath = new YamlPathSegment[segments.length-dropCount];
for (int i = 0; i < newPath.length; i++) {
newPath[i] = segments[i];
}
return new YamlPath(newPath);
}
代码示例来源:origin: spring-projects/sts4
if (assistContext != null) {
List<NodeRef<?>> astPath = ast.findPath(offset);
final YamlPath path = YamlPath.fromASTPath(astPath);
if (path != null) {
YamlPath assistPath = path;
if (assistPath.pointsAtKey()) {
String key = path.getLastSegment().toPropString();
assistPath = path.dropLast().append(YamlPathSegment.valueAt(key));
assistContext = assistPath.traverse(assistContext);
if (assistContext != null) {
Renderable info = path.pointsAtValue()
? assistContext.getValueHoverInfo(ymlDoc, new DocumentRegion(doc, region))
: assistContext.getHoverInfo();
代码示例来源:origin: spring-projects/sts4
/**
* Determines the actual health-check-type that applies to a given node, taking into account
* inheritance from parent node, and default value.
*/
private String getEffectiveHealthCheckType(YamlFileAST ast, YamlPath path, Node node) {
String explicit = NodeUtil.getScalarProperty(node, HEALTH_CHECK_TYPE_PROP);
if (explicit!=null) {
return explicit;
}
if (path.size()>2) {
//Must consider inherited props!
YamlPath parentPath = path.dropLast(2);
Node parent = parentPath.traverseToNode(ast);
String inherited = NodeUtil.getScalarProperty(parent, HEALTH_CHECK_TYPE_PROP);
if (inherited!=null) {
return inherited;
}
}
return "port";
}
代码示例来源:origin: spring-projects/sts4
private static YamlTraversal getConflictingNodesTraversal(YamlPath path, String[] propertyIds) {
Assert.isLegal(propertyIds.length > 0);
YamlTraversal properties = null;
for (String id : propertyIds) {
properties = properties == null ? YamlPathSegment.keyAt(id) : properties.or(YamlPathSegment.keyAt(id));
}
YamlTraversal traversal = path.then(properties);
if (path.size() > 2) {
traversal = traversal.or(path.dropLast(2).then(properties));
}
return traversal;
}
代码示例来源:origin: spring-projects/sts4
@Override
public YamlTraversal then(YamlTraversal _other) {
if (isEmpty()) {
return _other;
} else if (_other.isEmpty()) {
return this;
} else if (_other instanceof YamlPathSegment) {
return this.append((YamlPathSegment) _other);
} else if (_other instanceof YamlPath) {
YamlPath other = (YamlPath) _other;
return new YamlPath(
Stream.concat(
Arrays.stream(this.segments),
Arrays.stream(other.segments)
).toArray(sz -> new YamlPathSegment[sz])
);
} else {
return new SequencingYamlTraversal(this, _other);
}
}
代码示例来源:origin: spring-projects/sts4
protected String createPathInsertionText(YamlPath path, int indent, boolean startOnNewLine, String appendText) {
StringBuilder buf = new StringBuilder();
for (int i = 0; i < path.size(); i++) {
if (startOnNewLine||i>0) {
indentUtil.addNewlineWithIndent(indent, buf);
}
String key = path.getSegment(i).toPropString();
buf.append(YamlUtil.stringEscape(key));
buf.append(":");
if (i<path.size()-1) {
indent += YamlIndentUtil.INDENT_BY;
} else {
buf.append(indentUtil.applyIndentation(appendText, indent));
}
}
return buf.toString();
}
代码示例来源:origin: spring-projects/sts4
if (!path.isEmpty()) {
YamlPathSegment s = path.getSegment(0);
if (s.getType()==YamlPathSegmentType.VAL_AT_KEY) {
String key = s.toPropString();
createNewPath(node, path, appendText);
} else {
createPath(existing, path.tail(), appendText);
代码示例来源:origin: spring-projects/sts4
public YamlPath prepend(YamlPathSegment s) {
YamlPathSegment[] newPath = new YamlPathSegment[segments.length+1];
newPath[0] = s;
System.arraycopy(segments, 0, newPath, 1, segments.length);
return new YamlPath(newPath);
}
代码示例来源:origin: spring-projects/sts4
@Override
public YamlTraversal then(YamlTraversal other) {
//Overriding the `then` method to try to compress sequences of segments into YamlPath instead of deeply nested
if (other.isEmpty()) {
return this;
} else if (other instanceof YamlPathSegment) {
return new YamlPath(this, (YamlPathSegment)other);
} else if (other instanceof YamlPath) {
return ((YamlPath) other).prepend(this);
} else {
return new SequencingYamlTraversal(this, other);
}
}
代码示例来源:origin: spring-projects/sts4
/**
* Attempt to interpret last segment of path as a bean property name.
* @return The name of the property or null if not applicable.
*/
public String getBeanPropertyName() {
if (!isEmpty()) {
YamlPathSegment lastSegment = getLastSegment();
YamlPathSegmentType kind = lastSegment.getType();
if (kind==YamlPathSegmentType.KEY_AT_KEY || kind==YamlPathSegmentType.VAL_AT_KEY) {
return lastSegment.toPropString();
}
}
return null;
}
代码示例来源:origin: spring-projects/sts4
SNode root = doc.getStructure();
if (root!=null) {
YamlPath path = YamlPath.decode(params.getPath());
SNode _target = path.traverse(root);
if (_target instanceof SChildBearingNode) {
YamlIndentUtil indenter = new YamlIndentUtil(doc);
代码示例来源:origin: spring-projects/sts4
private YamlPath keyAt(YamlPath path, String key) {
if (path!=null && key!=null) {
return path.append(YamlPathSegment.keyAt(key));
}
return null;
}
代码示例来源:origin: spring-projects/sts4
@Override
public Renderable getHoverInfo() {
if (parent!=null) {
return parent.getHoverInfo(contextPath.getLastSegment());
}
return null;
}
代码示例来源:origin: spring-projects/sts4
public static ReconcileProblem missingProperties(String msg, DynamicSchemaContext dc, Set<String> missingProps, String snippet, int cursorOffset, Node parent, MappingNode map, QuickfixType quickfixType) {
YamlPath contextPath = dc.getPath();
List<String> segments = Stream.of(contextPath.getSegments())
.map(YamlPathSegment::encode)
.collect(Collectors.toList());
String fixTitle = missingProps.size()==1
? "Add property '"+CollectionUtil.getAny(missingProps)+"'"
: "Add properties: "+missingProps;
QuickfixData<MissingPropertiesData> fix = new QuickfixData<MissingPropertiesData>(
quickfixType,
new MissingPropertiesData(
dc.getDocument().getUri(),
segments,
ImmutableList.copyOf(missingProps),
snippet,
cursorOffset
),
fixTitle
);
return missingProperty(msg, dc.getDocument(), parent, map)
.addQuickfix(fix);
}
代码示例来源:origin: spring-projects/sts4
public YamlPath dropFirst(int dropCount) {
if (dropCount>=size()) {
return EMPTY;
}
if (dropCount==0) {
return this;
}
YamlPathSegment[] newPath = new YamlPathSegment[segments.length-dropCount];
for (int i = 0; i < newPath.length; i++) {
newPath[i] = segments[i+dropCount];
}
return new YamlPath(newPath);
}
代码示例来源:origin: spring-projects/sts4
public YamlPath append(YamlPathSegment s) {
YamlPathSegment[] newPath = Arrays.copyOf(segments, segments.length+1);
newPath[segments.length] = s;
return new YamlPath(newPath);
}
代码示例来源:origin: spring-projects/sts4
private YamlPath valueAt(YamlPath path, int index) {
if (path!=null) {
return path.append(YamlPathSegment.valueAt(index));
}
return null;
}
要构建我的远程环境,我需要设置几个环境变量(它们在 docker-compose 文件中使用)。这些是在我的 ZSH 环境中设置的,因此从终端运行 docker-compose build 可以按预期
这是vscode在主机中安装vscode-server时的日志 我发现它得到了 vscode-server 提交 ID,如下日志: [13:07:27.334] Using commit id "f8
在 devContainer 实例中安装 LiveShare 扩展时出现错误。 例如使用:https://github.com/microsoft/vscode-remote-try-go/然后将扩展
在 devContainer 实例中安装 LiveShare 扩展时出现错误。 例如使用:https://github.com/microsoft/vscode-remote-try-go/然后将扩展
我尝试在代码中构建和调试扩展。 我从https://github.com/microsoft/vscode-wordcount下载了字数统计的样本. 当我单击 F5 时,未生成 ./out 文件夹,并
你好,我最近从 Atom 切换到 Vs-code,并尝试了一些解释如何在他们的网站上添加语言支持的教程,我知道语言支持应该有着色器 问题是如何为自定义语言添加颜色?当我基本上使用每种语言时,我习惯了自
为了为我的数据科学工作流提供足够的计算能力,我在远程机器上使用 Docker 容器。虽然我可以通过 vscode-remote 连接到我的远程机器,但我无法连接到运行在这台机器上的 Docker 容器
我有一个创建多个 Docker 镜像的项目。我想在 vscode-remote 中为每个图像设置一个 devcontainer,以便我可以为每个图像启动一个容器。 我一次只需要启动并连接到一个容器/图
我认为这是可以通过编辑实现的 keybindings.json .由于我似乎无法找到可用命令的列表,因此通过自动完成我已经做到了这一点: { "key": "SHORTCUT"
gopls 需要在工作区的根目录下有一个模块。 您可以通过将每个模块作为工作区文件夹打开来处理多个模块。 此工作流程的改进即将推出 ( https://github.com/golang/go/iss
我的电脑上已经安装了 vscode。不久前我注意到它现在包含在 anaconda 发行版中。与我已经安装的 vscode 相比,使用 anaconda 附带的 vscode 有什么好处吗? 仅供引用,
我的电脑上已经安装了 vscode。不久前我注意到它现在包含在 anaconda 发行版中。与我已经安装的 vscode 相比,使用 anaconda 附带的 vscode 有什么好处吗? 仅供引用,
我想为 VSCode 编写一个扩展,重用 vscode-python 的重构/重命名功能扩大。这样,当用户执行我的命令时,我的扩展程序将对 .py 文件的变量进行重命名。我不知道 vscode-pyt
环境 vscode 版本 1.19.1 (1.19.1) 鲁博科普 (0.52.1) Darwin mbp 16.7.0 Darwin 内核版本 16.7.0:2017 年 10 月 4 日星期三 0
我在写 Markdown 文本时尝试自动换行:我希望当我输入比 wrap line length 长的行时自动换行设置,由硬 中断(即 newline 字符)。 我已经设定 word wrap至 wo
我想制作一个涉及发布到我的 API 的 VSC 扩展,但是当我将我的 fetch 语法写出以发布到我的服务器时,它不起作用。所以我想也许我需要添加 node-fetch,所以我做了npm i --sa
我有一个 master 分支,它是生产分支,因此我创建了几个其他分支来修复和缺陷。我在这些分支中做了一些更改,所以我在这些分支中提交了很多次。根据政策,我必须为 master 分支中的缺陷创建单个提交
我正在使用 Visual Studio Code Insiders 版本 1.65.0-insider。直到 3 天前,我通过 VPN 从工作笔记本电脑连接到工作中的远程服务器时没有遇到任何问题。我有
在 Windows 上,我必须在打开的每个新终端 session 上运行命令 start-ssh-agent.cmd。我的开发环境是VSCode,每天都会打开十几个新终端。每次打开终端后,我都必须手动
我最近开始使用 VSCode,我真的很喜欢它。我用谷歌搜索了我的问题,并试图找到与 VSCode 相关的任何答案。 考虑我有以下代码: if (a === 'some condition') re
我是一名优秀的程序员,十分优秀!