Rss Feed Java MVC
Posted
by GigaPr
on Stack Overflow
See other posts from Stack Overflow
or by GigaPr
Published on 2010-06-03T21:59:27Z
Indexed on
2010/06/03
22:04 UTC
Read the original article
Hit count: 302
rss
|spring-mvc
Hi,
i would like to create some RSS Feeds for my website. I managed to crate the XML file but
How do i display it in a nice format like
http://newsrss.bbc.co.uk/rss/newsonline_uk_edition/front_page/rss.xml
and how do i crate the little icon in the url box?
by the way my XML file looks like
<?xml version='1.0' encoding='UTF-8'?>
<rss version="2.0">
<channel>
<title>title</title>
<description>desciption</description>
<link>LINK</link>
<dateCreated>2010-05-31 00:00:00.0</dateCreated>
<language>Italian</language>
<item>
<title>pojpoj</title>
<description>pojpojpoj</description>
<link>ojpojpoj</link>
<dateCreated>2010-06-03 00:00:00.0</dateCreated>
<pubDate>2010-06-03 00:00:00.0</pubDate>
</item>
<item>
<title>dfojp</title>
<description>pojpojpoj</description>
<link>pojpoj</link>
<dateCreated>2010-06-03 00:00:00.0</dateCreated>
<pubDate>2010-06-03 00:00:00.0</pubDate>
</item>
</channel>
</rss>
Thanks
© Stack Overflow or respective owner