问题标签 [web-inf]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
file - 如何在 /WEB-INF/ 下创建文件
我正在开发一个将文件存储在 /WEB-INF/someFolder/ 下的应用程序。但是我找不到在此文件夹下创建文件的正确方法。我这样做了,但它不起作用:
当我尝试检查创建时:
我得到:
请帮助我以正确的方式进行操作。
更新: 我做了这个解决方法,它正在工作,但我没有看到它是高性能的解决方案。
有任何想法吗?
redirect - 使用 jsf 重定向 - 从 web 中的页面到 WEB-INF 中的页面
我想从 webapp/index 中的页面重定向到 WEB-INF/user.xhtml 中的页面我该如何在 jsf 中做到这一点?
问候,
java - Tomcat: How to point different directories to the same WEB-INF
Currently trying to setup multiple subdomains/domains in my Tomcat and I'm needing them all to use the same WEB-INF/classes/ for everything.
Basically my folder structure is like so:
So basically I need assets.domain.com, www.domain.com, and dev.domain.com to go up one level in the directory to find the WEB-INF and use the Java classes stored there... Is there any way to accomplish this? Thanks!
xpages - Lotus Domino 环境中 WEB-INF/类的刷新设计
我在 WEB-INF/classes 中部署了一些类。当我在生产中刷新设计数据库时,这些类没有更新?为什么?
java - WEB-INF 在 Java EE Web 应用程序中用于什么?
我正在开发具有以下源代码目录结构的 Java EE Web 应用程序:
我感兴趣的文件夹是WEB-INF
:它包含web.xml
用于设置 servlet、Spring bean 连接上下文和 JSP 标记和视图的 XML 文件。我试图了解是什么限制/定义了这个结构。例如,JSP 文件总是必须在其中WEB-INF
还是可以在其他地方?还有什么可以进去的WEB-INF
吗?Wikipedia 的WAR 文件条目提到classes
了 Java 类和lib
JAR 文件 - 除了其他源文件位置之外,我不确定何时需要这些文件。
java - 将 JAR 添加到 IntelliJ 的 WEB-INF/lib 目录的正确过程是什么
假设我有一个 Java Web 项目,我需要将几个 JAR 放入 WEB-INF/lib 目录。在 Eclipse 中,如果您只是将这些 JAR 放在那里,Eclipse 会像在类路径中一样拾取它们。但是,IntelliJ 似乎没有。
将这些 JAR 添加到项目中以使其位于标准 WEB-INF/lib 目录中的正确方法是什么?
jsp - How can I hide the JSP file in WEB-INF folder?
In a simple Java web application, for example imagine you have a servlet TestServlet.java. In deployment description ( web.xml ) you can for example map the request coming to say /testpage
to TestServlet so that when /testapplication/testpage
is requested TestServlet handles the request. And you can for example write "Hello World" and send the response.
In directory structure ( the application that is deployed to the web server ), TestServlet.java will reside in:
which means there is no way to get to this file using the browser. ( Like entering a URL )
You can also get the request dispatcher and forward the request and response object to a JSP file like .getRequestDispatcher("/test.jsp")
. But then the file will be in
so connecting to http:\\server.com\test.jsp will also get this file.
I want to hide the file in WEB-INF folder so it can not be reached by the client except the mapping I have provided.
What is the appropriate way for doing this?
jsp - 如何在 JSP 中使用 javaxt
我想在 JSP 代码中使用 Javaxt 库
所以我在我的 DynamicWebProject 中包含外部库
并像这样使用
此代码在 JAVA 项目中运行良好,但在 JSP web 中无法运行
如何在 JSP 中使用 javaxt?
jsp - 如何在jsp页面之间导航
我有一个home.jsp
在 WEB-INF 目录之外调用的 jsp 页面和一个在文件夹内部jsp
调用的页面。我需要将此页面放在目录中,以便在用户尝试通过键入其 URL 来访问它时无法访问它。所以我的问题是如何通过单击“谢谢”中的按钮来导航。service.jsp
WEB-INF
service.jsp
WEB-INF
home.jsp
service.jsp
home.jsp
servlet-3.0 - Web 片段 (Servlet API 3.0) - 也是 WEB-INF 目录中的模块化资源
根据 Servlet 3.0,放置在 WEB-INF/lib 中的 JAR 具有来自其 META-INF/resource 目录的静态内容,可从 web-context 根目录访问。
规范没有说明模块化资源,应该可以从 WEB-INF 目录访问。我想创建一个模块化项目,其中每个模块将其 WEB-INF 目录中的所有文件“添加”到 web-context/WEB-INF 目录。可能吗?