The prefix "xsi" for attribute "xsi:schemaLocation" associated with an element type "x" is not bound

因为公司的项目需要解析xml然后读取配置,在进行下一步的操作。我选择的做法是使用jaxb来实现。当然了至于jaxb我会慢慢想大家介绍。

总之需要的是先写一个xsd文件,然后写出一个符合xsd规范的xml来。

xsd写完了,再写xml的时候eclipse 的xml编辑器重视报错

The prefix "xsi" for attribute "xsi:schemaLocation" associated with an element type "x" is not boundThe prefix "xsi" for attribute "xsi:schemaLocation" associated with an element type "x" is not bound_第1张图片

就是这个,因为对xml不是很熟悉所以不知道如何是好,所以就在google上查,但是结果都不能让我满意。本想忽略它但是jaxb在解析的时候也是会抛出相同的错误

后来歪打正着竟让我找到了错误的原因。哎,还是对xml不熟悉啊。

The prefix "xsi" for attribute "xsi:schemaLocation" associated with an element type "x" is not bound_第2张图片

原来是http://www.w3.org/2001/XMLSchema-instance的前缀写错了。更改后便可以运行了。

不敢独享,拿来分享

你可能感兴趣的:(eclipse,xml,JAXB,Google)