Build sitemap.xml by Java Spring [duplicate]

被刻印的时光 ゝ 提交于 2019-12-12 09:54:12

问题


I'm building a sitemap.xml by Spring MVC

@XmlRootElement(name = "urlset")
public class XmlUrlSet{
@XmlElements(@XmlElement(name = "url", type = XmlUrl.class))
private List<XmlUrl> sitemap = new ArrayList<XmlUrl>();

public void addUrl(XmlUrl xmlUrl) {
    sitemap.add(xmlUrl);
}

public List<XmlUrl> getXmlUrls() {
    return sitemap;
}
}

And it renders like this:

<urlset>
    <url>
        ...
    </url>
    <url>
        ...
    </url>
</urlset>

I just want to know how to add namespace for xml and xml version like Google's sitemap example?

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
   <url>
      <loc>http://www.example.com/foo.html</loc> 
   </url>
</urlset>

回答1:


I hope you might have found your solution. Still, this answer may be helpful to someone.

Replacing @XmlRootElement(name = "urlset") with @XmlRootElement(name = "urlset", namespace = "http://www.sitemaps.org/schemas/sitemap/0.9") would solve your problem.

Update

If you have tried above solution. You will get the result something like following.

<ns2:urlset xmlns:ns2="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
    </url>
</ns2:urlset>

Solve this problem by adding package-info.java file in your package where you have placed XmlUrlSet class with the following content.

@XmlSchema(
    namespace="http://www.something.com/something", 
    elementFormDefault=XmlNsForm.QUALIFIED)
package your.package;

import javax.xml.bind.annotation.*;

It should solve your problem.

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    <url>
    </url>
</urlset>


来源:https://stackoverflow.com/questions/31714663/build-sitemap-xml-by-java-spring

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!