在 eclipse 中为我的 solr 应用程序创建一个新的 jsp 页面
我正在关注本教程 http://www.lucidimagination.com /devzone/technical-articles/setting-apache-solr-eclipse 但当我在 src 文件夹中创建一个新页面时,我看不到新页面。
我想在 eclipse src 文件夹中创建一个新的 jsp 文件 (base.jsp),该文件将出现在此处: http ://localhost:8080/solr/base.jsp
该教程说将构建路径输出更改为 TestSolr/webapp/WEB-INF/classes 所以我尝试了 http://localhost:8080/solr0/classes/base.jsp 也是如此。
谢谢
I'm following this tutorial http://www.lucidimagination.com/devzone/technical-articles/setting-apache-solr-eclipse but I can't see my new page when I create one in the src folder.
I want to create a new jsp file (base.jsp) in the eclipse src folder which will then appear here: http://localhost:8080/solr/base.jsp
The tutorial said to change the build path output to TestSolr/webapp/WEB-INF/classes so I have tried http://localhost:8080/solr0/classes/base.jsp as well.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只有 java 源文件会进入 src 文件夹。
如果您已分解 apache war 文件并将内容复制到 eclipse 中的 webapp 文件夹中,请将 base.jsp 文件放入 webapp 文件夹中。
该文件基本上应该位于与index.jsp 相同位置的根目录中。
Only the java source files would go into the src folder.
If you have exploded the apache war file and and copied the contents into the webapp folder in eclipse, place the base.jsp file into the webapp folder.
The file basically should be at the root in the same location as index.jsp.