打开pom.xml文件时收到如下提示:

There is no schema defined for this pom.xml. Code completion will not work without a schema defined.

将 改为:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

即可。

参考链接:
http://code.google.com/p/springside/issues/detail?id=40

pom.xml文件参考:
http://maven.apache.org/pom.html

相关文章:

  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2021-11-23
  • 2021-05-23
  • 2022-12-23
猜你喜欢
  • 2022-02-05
  • 2022-12-23
  • 2021-04-24
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案