Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Tomcat 中,并且有一个带有 JSP 内容的字符串。我尝试获取 HttpServletResponse 表示 HTML 输出。在正常情况下,您调用 JSP,WebContainer 将其转换为 Servlet 并生成输出。
但是我没有 JSP 作为文件,只有一个带有 JSP 内容的字符串。是否有可以放置 Stream 并对其进行处理的类或工厂?
期待中的感谢
不,没有现成的解决方案。
但是,你可以试试这个:
/tmp/jspstring.jsp
getServletContext().getRealPath("/tmp/jspstring.jsp")
RequestDispatcher