- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.jetbrains.yaml.psi.YAMLKeyValue
类的一些代码示例,展示了YAMLKeyValue
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAMLKeyValue
类的具体详情如下:
包路径:org.jetbrains.yaml.psi.YAMLKeyValue
类名称:YAMLKeyValue
暂无
代码示例来源:origin: zalando/intellij-swagger
@Override
public void visitElement(final PsiElement element) {
if (element instanceof YAMLKeyValue) {
final YAMLKeyValue yamlKeyValue = (YAMLKeyValue) element;
if (OpenApiConstants.REF_KEY.equals(yamlKeyValue.getKeyText())) {
final String refValue = StringUtils.removeAllQuotes(yamlKeyValue.getValueText());
if (isYamlFile(refValue)) {
result.add(
extractFileNameFromFileRefValue(refValue)
+ DELIMITER
+ getOpenApiFileTypeFromRefElement(yamlKeyValue.getValue(), refValue));
}
}
}
super.visitElement(element);
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
private void registerYmlRoutePatternProblem(@NotNull ProblemsHolder holder, @NotNull YAMLKeyValue element) {
String s = PsiElementUtils.trimQuote(element.getKeyText());
if("pattern".equals(s) && YamlHelper.isRoutingFile(element.getContainingFile())) {
// pattern: foo
holder.registerProblem(element.getKey(), "Pattern is deprecated; use path instead", ProblemHighlightType.LIKE_DEPRECATED);
} else if(("_method".equals(s) || "_scheme".equals(s)) && YamlHelper.isRoutingFile(element.getContainingFile())) {
// requirements: { _method: 'foo', '_scheme': 'foo' }
YAMLKeyValue parentOfType = PsiTreeUtil.getParentOfType(element, YAMLKeyValue.class);
if(parentOfType != null && "requirements".equals(parentOfType.getKeyText())) {
holder.registerProblem(element.getKey(), String.format("The '%s' requirement is deprecated", s), ProblemHighlightType.LIKE_DEPRECATED);
}
}
}
代码示例来源:origin: zalando/intellij-swagger
@Override
public List<String> getSecurityScopesIfOAuth2(final PsiElement securityDefinitionItem) {
final List<YAMLKeyValue> properties = getChildProperties(securityDefinitionItem);
final boolean isOAuth2 =
properties
.stream()
.anyMatch(
prop -> {
final Optional<String> value =
Optional.ofNullable(prop.getValue())
.map(YAMLValue::getText)
.map(StringUtils::removeAllQuotes);
return "type".equals(prop.getName()) && Optional.of("oauth2").equals(value);
});
if (isOAuth2) {
return properties
.stream()
.filter(prop -> "scopes".equals(prop.getName()))
.map(this::getChildProperties)
.flatMap(Collection::stream)
.map(YAMLKeyValue::getName)
.collect(Collectors.toList());
}
return ImmutableList.of();
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
/**
* Attach all parent array keys to list (foo:\n bar:): [foo, bar]
*
* @param yamlKeyValue current key value context
* @param key the key list
*/
public static void getParentArrayKeys(YAMLKeyValue yamlKeyValue, List<String> key) {
key.add(yamlKeyValue.getKeyText());
PsiElement yamlCompount = yamlKeyValue.getParent();
if(yamlCompount instanceof YAMLCompoundValue) {
PsiElement yamlKeyValueParent = yamlCompount.getParent();
if(yamlKeyValueParent instanceof YAMLKeyValue) {
getParentArrayKeys((YAMLKeyValue) yamlKeyValueParent, key);
}
}
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
@Override
public boolean accepts(@NotNull YAMLKeyValue yamlKeyValue, ProcessingContext processingContext) {
return this.keyText.equals(yamlKeyValue.getKeyText());
}
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
public Map<String, String> getLocalParameterMap(PsiFile psiFile) {
Map<String, String> map = new HashMap<>();
for(YAMLKeyValue yamlParameterArray: getQualifiedKeyValuesInFile((YAMLFile) psiFile, "parameters")) {
String keyName = yamlParameterArray.getKeyText();
if(StringUtils.isBlank(keyName)) {
continue;
}
// extract parameter value
String textValue = null;
PsiElement value = yamlParameterArray.getValue();
if(value instanceof YAMLScalar) {
String myTextValue = ((YAMLScalar) value).getTextValue();
if(myTextValue.length() > 0 && myTextValue.length() < 150) {
textValue = myTextValue;
}
}
map.put(keyName.toLowerCase(), textValue);
}
return map;
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
YAMLValue value = yamlKeyValue.getValue();
if(!(value instanceof YAMLMapping)) {
return Collections.emptyList();
String keyText = ((YAMLKeyValue) element).getKeyText();
if(StringUtils.isBlank(keyText)) {
continue;
YAMLValue yamlValue = ((YAMLKeyValue) element).getValue();
if (yamlValue != null) {
valueText = ((YAMLKeyValue) element).getValueText();
} else {
PsiElement key = ((YAMLKeyValue) element).getKey();
if(key != null) {
PsiElement nextSiblingOfType = PsiElementUtils.getNextSiblingOfType(key, PlatformPatterns.psiElement(YAMLTokenTypes.TAG));
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
YAMLMapping parentMapping = yamlKeyValue.getParentMapping();
String valueText = classKeyValue.getValueText();
if (StringUtils.isNotBlank(valueText)) {
return valueText;
PsiElement yamlMapping = yamlKeyValue.getParent();
if(yamlMapping instanceof YAMLMapping) {
PsiElement parent = yamlMapping.getParent();
if(parent instanceof YAMLKeyValue) {
String keyText = ((YAMLKeyValue) parent).getKeyText();
if(StringUtils.isNotBlank(keyText) && !keyText.contains(".") && PhpNameUtil.isValidNamespaceFullName(keyText)) {
return keyText;
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
String keyText = ((YAMLKeyValue) yamlKeyValue).getKeyText();
if(!(keyText.equalsIgnoreCase("targetEntity") || keyText.equalsIgnoreCase("targetDocument"))) {
return;
String valueText = ((YAMLKeyValue) yamlKeyValue).getValueText();
if(StringUtils.isBlank(valueText)) {
return;
setTooltipText("Navigate to file");
PsiElement key = ((YAMLKeyValue) yamlKeyValueTarget).getKey();
if(key != null) {
lineMarkerInfos.add(builder.createLineMarkerInfo(key));
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
@Nullable
public static YAMLKeyValue getYamlKeyValue(@Nullable YAMLKeyValue yamlKeyValue, String keyName, boolean ignoreCase) {
if(yamlKeyValue == null) {
return null;
}
PsiElement yamlCompoundValue = yamlKeyValue.getValue();
if(!(yamlCompoundValue instanceof YAMLCompoundValue)) {
return null;
}
return getYamlKeyValue(yamlCompoundValue, keyName, ignoreCase);
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
private void registerYmlRoutePatternProblem(@NotNull ProblemsHolder holder, @NotNull YAMLKeyValue element) {
String s = PsiElementUtils.trimQuote(element.getKeyText());
if(("factory_class".equals(s) || "factory_method".equals(s) || "factory_service".equals(s)) && YamlElementPatternHelper.getInsideServiceKeyPattern().accepts(element)) {
// services:
// foo:
// factory_*:
registerProblem(holder, element.getKey());
}
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
/**
* Symfony 3.3: "class" is optional; use service name for its it
*
* Foo\Bar:
* arguments: ~
*/
@Nullable
public static String getServiceClassFromServiceMapping(@NotNull YAMLMapping yamlMapping) {
YAMLKeyValue classKeyValue = yamlMapping.getKeyValueByKey("class");
// Symfony 3.3: "class" is optional; use service id for class
// Foo\Bar:
// arguments: ~
if(classKeyValue != null) {
return classKeyValue.getValueText();
}
PsiElement parent = yamlMapping.getParent();
if(parent instanceof YAMLKeyValue) {
String keyText = ((YAMLKeyValue) parent).getKeyText();
if(YamlHelper.isClassServiceId(keyText)) {
return keyText;
}
}
return null;
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
String keyName = yamlKeyValue.getKeyText();
if(StringUtils.isBlank(keyName)) {
continue;
YAMLValue value = arguments.getValue();
if(value instanceof YAMLSequence) {
for (String id : YamlHelper.getYamlArrayValuesAsList((YAMLSequence) value)) {
if(calls != null) {
for (YAMLPsiElement yamlPsiElement : calls.getYAMLElements()) {
if(yamlPsiElement instanceof YAMLSequence) {
for (YAMLSequenceItem yamlSequenceItem : ((YAMLSequence) yamlPsiElement).getItems()) {
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
String keyText = yamlKeyValue.getKeyText();
if(StringUtils.isNotBlank(keyText) && !keyText.equals(keyText.toLowerCase()) && !YamlHelper.isClassServiceId(keyText)) {
PsiElement firstChild = yamlKeyValue.getFirstChild();
if(firstChild != null) {
holder.registerProblem(firstChild, SYMFONY_LOWERCASE_LETTERS_FOR_SERVICE, ProblemHighlightType.WEAK_WARNING);
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
String parameterName = ((YAMLKeyValue) context).getKeyText();
if(parameterName.startsWith("$") && parameterName.length() > 1) {
PsiElement yamlMapping = context.getParent();
PsiElement yamlKeyValue = yamlMapping.getParent();
if(yamlKeyValue instanceof YAMLKeyValue) {
String keyText = ((YAMLKeyValue) yamlKeyValue).getKeyText();
if(keyText.equals("arguments")) {
YAMLMapping parentMapping = ((YAMLKeyValue) yamlKeyValue).getParentMapping();
if(parentMapping != null) {
String serviceId = getServiceClassFromServiceMapping(parentMapping);
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
@Nullable
public static PsiElement insertKeyIntoFile(final @NotNull YAMLFile yamlFile, final @NotNull YAMLKeyValue yamlKeyValue, @NotNull String... keys) {
String keyText = yamlKeyValue.getKeyText();
return insertKeyIntoFile(yamlFile, (yamlMapping, chainedKey) -> {
String text = yamlKeyValue.getText();
final String previousIndent = StringUtil.repeatSymbol(' ', YAMLUtil.getIndentInThisLine(yamlMapping));
// split content of array value object;
// drop first item as getValueText() removes our key indent
String[] remove = (String[]) ArrayUtils.remove(text.split("\\r?\\n"), 0);
List<String> map = ContainerUtil.map(remove, s -> previousIndent + s);
return "\n" + StringUtils.strip(StringUtils.join(map, "\n"), "\n");
}, (String[]) ArrayUtils.add(keys, keyText));
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
/**
* Find controller definition in yaml structure
*
* foo:
* defaults: { _controller: "Bundle:Foo:Bar" }
* defaults:
* _controller: "Bundle:Foo:Bar"
* controller: "Bundle:Foo:Bar"
*/
@Nullable
public static String getYamlController(@NotNull YAMLKeyValue psiElement) {
YAMLKeyValue yamlKeyValue = YamlHelper.getYamlKeyValue(psiElement, "defaults");
if(yamlKeyValue != null) {
final YAMLValue container = yamlKeyValue.getValue();
if(container instanceof YAMLMapping) {
YAMLKeyValue yamlKeyValueController = YamlHelper.getYamlKeyValue(container, "_controller", true);
if(yamlKeyValueController != null) {
String valueText = yamlKeyValueController.getValueText();
if(StringUtils.isNotBlank(valueText)) {
return valueText;
}
}
}
}
String controller = YamlHelper.getYamlKeyValueAsString(psiElement, "controller");
if(controller != null && StringUtils.isNotBlank(controller)) {
return controller;
}
return null;
}
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
private static boolean collectItems(@NotNull List<String> levels, @NotNull YAMLKeyValue yamlKeyValue, @NotNull YamlTranslationCollector translationCollector) {
List<YAMLPsiElement> childElements = yamlKeyValue.getYAMLElements();
String keyText = yamlKeyValue.getKeyText();
if(StringUtils.isBlank(keyText)) {
return true;
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
private void visitServiceId(@NotNull PsiElement leafTarget, @NotNull YAMLKeyValue yamlKeyValue, @NotNull Collection<LineMarkerInfo> result, @NotNull LazyDecoratedParentServiceValues lazyDecoratedServices) {
String id = yamlKeyValue.getKeyText();
if(StringUtils.isBlank(id)) {
return;
yamlKeyValue.getProject(),
ServiceUtil.ServiceLineMarker.DECORATE,
lazyDecoratedServices.getDecoratedServices(),
yamlKeyValue.getProject(),
ServiceUtil.ServiceLineMarker.PARENT,
lazyDecoratedServices.getDecoratedServices(),
代码示例来源:origin: Haehnchen/idea-php-symfony2-plugin
if ("services".equals(yamlKeyValue.getKeyText())) {
PsiElement yamlKeyValueLastChild = yamlKeyValue.getLastChild();
if (yamlKeyValueLastChild instanceof YAMLMapping) {
for (YAMLKeyValue keyValue : ((YAMLMapping) yamlKeyValueLastChild).getKeyValues()) {
如何附加库源,例如 MySql.Data.dll (源代码文件:mysql-connector-net-6.9.9-src.zip),到IDE? 当我 Ctrl + 单击库类时,它会自动反编译 dll
我们有一个样式规则,要求“使用”语句在类的 namespace 声明“内部”。我找不到从代码编辑器中设置自动引用的位置,以便添加的任何“使用”语句都将位于命名空间内而不是页面顶部。在设置中有代码样式
我刚刚创建了一个函数,但在架构中找不到它。为了确保我正在阅读最新的模式,我什至重新启动了 DataGrip。 DataGrip 中的函数在哪里? 最佳答案 在 例程数据库树的一部分。 关于jetbra
当多个选择光标处于事件状态时,有没有办法访问光标的索引? 例子 : 假设我有以下文本,有 5 个光标 lo|rem ip|sum do|lor si|t am|et 通过访问游标的索引,我可以轻松地将
我可以使用 MPS 为 IntelliJ 创建“常规”语言插件吗? 看起来 MPS 的核心功能是从 DSL 到 Java 的转录。但是,我只想定义 DSL 语法和编辑器,以通过 JetBrain 插件
我在工作中使用了 JetBrains 的 DataGrip。没关系,但我不知道如何在表之间创建关系,如下图所示: 最佳答案 这是一个两步程序。在第一步中,您必须修改表以添加外键约束定义。第二步,可以显
我在 Windows 10 上安装了 JetBrains Toolbox 应用。但是当我启动它时,它只显示一个空白边框,如下所示: 我尝试重新安装它,但仍然无法正常工作。有人知道如何解决这个问题吗?
不久前,我在 .edu. 域中使用我的电子邮件注册了所有 JetBrains 产品的学生许可证。许可证很快就会到期,所以我的问题是,我可以使用同一电子邮件再次注册下一个许可证吗?或者我有什么办法可以进
注: 我相信有更好的方法来解决这个问题。我只是想我会把它放在那里来拯救某人一些挫败感。 我不是专家,只是想提供帮助。 问题: 在基于 Ubuntu 的 Linux 发行版上使用 JetBrains 工
在 Rider 中,C# #regions 将在“结构” Pane 中显示为自动折叠。如果您在结构 Pane 中打开该区域,然后在打开的文件中的任何位置进行任何编辑,它们会再次自动折叠。 有什么办法可
昨天,我的 Android Studio 无缘无故开始显示以下消息: Gradle sync failed: org/jetbrains/kotlin/kapt/idea/KaptGradleMode
Error I am getting in flutter project, when run for android ( real device (android version 10) an
有人知道以下问题的解决方法吗? 除了:https://code.google.com/p/android/issues/detail?id=164202之外,我找不到任何有用的东西。 Android
我正在尝试调试远程 NodeJs 应用程序 (Volumio)。 我可以设置断点并单步执行代码,但是当我尝试检查任何变量的值时,我得到: org.jetbrains.v8.protocol.V8Pro
我从头开始创建了一个Kotlin原生应用程序,我得到了上面的错误。我怎么才能解决这个问题呢?这是一款简单的“Hello World”应用程序。我有其他计算机,但该错误没有出现在那里。我认为这与科南没有
目录 前言 jetbrains datagrip介绍: 安装教程 更换语言 接下来给大家介绍一下datagrip的基本使用步骤【连接数据库】
我浏览了所有应用程序和两个Google页面,但没有找到它。如何启用输出窗口? 还有更多字母。并有更多字母满足问题要求。 最佳答案 如果您指的是构建输出:从最新的EAP开始,您可以通过以下方式启用此功能
我在工作时使用JetBrains Toolbox来管理我的不同项目,但是它已经停止工作了几天。 当我单击该图标时,没有打开任何窗口。请注意,这与this question中的问题不同,我什么都没有发生
我想知道为什么DataGrip在编辑表值时不遵循本地数字格式分隔符。 在德国,我们的小数点分隔符是逗号,而不是点。因此,我无法使用键盘来编辑数字。 有没有人知道如何更改数字格式? 最佳答案 对于正在寻
如何选择多个文本实例?例如通过突出显示一个“li”标签来选择所有“li”标签,然后按快捷键选择下一个实例等等。谢谢 最佳答案 嗯,你不能。我认为您正在谈论 Sublime Text 2 中存在的多个光
我是一名优秀的程序员,十分优秀!