xml中自动完成不工作

xml中自动完成不工作

本文介绍了使用IntellijIdea进行弹出启动:在pom.xml中自动完成不工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚使用 Spring-boot Maven 。我有添加依赖关系到我的 pom.xml 的问题。

I'm new with Spring-boot and Maven. I have problem in adding dependency to my pom.xml.

我使用Intellij IDEA和每一个依赖关系应该从我的知识中写出整个< groupId >和< artifactId> ,我认为这不是好主意! intellisense不能在pom文件中工作。

I using Intellij IDEA and for every single dependency I should write the whole <groupId> and <artifactId> from my knowledge that I think this is not good idea! intellisense not working in pom file.

例如我想添加 jack-son ,而Intellisense只是自动创建块依赖无价值!但是我需要帮助来填充artifactId,当我键入 j 我希望加载 jackson-dataformat-xml

for example I want to add jack-son and Intellisense just auto creates block of dependency without value! but I need help to fill "artifactId" and when I type "j" I expect to load "jackson-dataformat-xml"

我没有如何在pom.xml中激活Intellisense

I do not how to activate intellisense in pom.xml

推荐答案

Intellij为此目的提供实时模板功能。

Intellij provides Live Templates functionality for this very purpose.

在pom.xml中,编写dep并按Tab键,它应该创建用于依赖的骨架xml标签。

In pom.xml, write dep and press tab key, it should create the skeleton xml tag for dependency.

您还可以添加/编辑模板相同的设置面板。

You can also add/edit templates from same settings panel.

我误解了这个问题。要能够自动完成依赖项/ jars 的 名称,请从Intellij设置更新Maven存储库索引。

I misinterpreted the question. To be able to auto-complete names of the dependencies/jars, please update the Maven repository index from Intellij settings.

Intellij根据本地存储库和maven存储库索引建议这些依赖关系的名称。

Intellij suggests names of these dependencies based on local repository and maven repository index.

这篇关于使用IntellijIdea进行弹出启动:在pom.xml中自动完成不工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 17:36