通过Web浏览器显示Web应用程序资源
我实现了一个小型Web应用程序来在java(spring mvc)中创建Rss提要
我在应用程序中创建了一个页面,其中显示了创建的所有Rss(xml文件),
这发生了读入存储rss的文件夹(Rss显然是以 xml 格式)
RSS 路径看起来像
C:\Documents and Settings\Giga\My Documents\NetBeansProjects\JavaRssFeed\RssFeed\build\web\WEB-INF\Xml\title.xml
应用程序的根目录是 RssFeed(在我通常在浏览器中输入 http://localhost:8080/RssFeed/home.htm 作为主页页)
问题是
如何将提要显示到浏览器中?
在 IE 中,我可以使用路径
C:\Documents and Settings\Giga\My Documents\NetBeansProjects\JavaRssFeed\RssFeed\build\web\WEB-INF\Xml\title.xml
但它在 Firefox 中不起作用
我尝试做一些事情就像
http://localhost:8080/RssFeed/xml/title.xml
但我获取源未找到错误
问题是如何将 RSS 提要显示到浏览器中?
i implemented a small web application to create Rss feeds in java(spring mvc)
i created a page within the application where i display all the Rss(xml files) created
this occur reading into the folder where the rss are stored (the Rss are obviously in xml format)
the rss path looks like
C:\Documents and Settings\Giga\My Documents\NetBeansProjects\JavaRssFeed\RssFeed\build\web\WEB-INF\Xml\title.xml
The root of the application is RssFeed(in the browser i usually type http://localhost:8080/RssFeed/home.htm for the home page)
the question is
how can i display the feeds into the browser?
In IE i can use the path
C:\Documents and Settings\Giga\My Documents\NetBeansProjects\JavaRssFeed\RssFeed\build\web\WEB-INF\Xml\title.xml
but it doesn t work in Firefox
i tried to do something like
http://localhost:8080/RssFeed/xml/title.xml
but i get source not found error
the question is how can i display the rss feeds into the browser?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该有一个正在运行的 Web 服务器(tomcat、was 等)
部署应用程序并通过 http://localhost:8080/YOURAPP
You should have a running web server (tomcat, was, etc)
Deploy the app and access it via http://localhost:8080/YOURAPP