通过Web浏览器显示Web应用程序资源

发布于 2024-09-04 06:34:45 字数 845 浏览 5 评论 0原文

我实现了一个小型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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南烟 2024-09-11 06:34:45
  1. 您应该有一个正在运行的 Web 服务器(tomcat、was 等)

  2. 部署应用程序并通过 http://localhost:8080/YOURAPP

  1. You should have a running web server (tomcat, was, etc)

  2. Deploy the app and access it via http://localhost:8080/YOURAPP

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文