- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
比如说,有一个类 MyJSPWriter
扩展了 JspWriter
并实现了所有的抽象方法。并且 print(String )
被修改为添加一些特殊的行为,这样所有的字符串表达式都会被区别对待(也许我可以将它用于一些特殊的编码或类似的东西——这是一个简化的例子):
package com.myproject.base;
import java.io.IOException;
import javax.servlet.jsp.JspWriter;
public class MyJSPWriter extends JspWriter{
JspWriter out = null;
public MyJSPWriter(JspWriter out) {
super(0, true);
this.out = out;
}
@Override
public String toString() {
return out.toString();
}
@Override
public void clear() throws IOException {
out.clear();
}
@Override
public void clearBuffer() throws IOException {
out.clearBuffer();
}
@Override
public void close() throws IOException {
out.close();
}
@Override
public void flush() throws IOException {
out.flush();
}
@Override
public int getRemaining() {
return out.getRemaining();
}
@Override
public void newLine() throws IOException {
out.newLine();
}
@Override
public void print(boolean b) throws IOException {
out.print(b);
}
@Override
public void print(char c) throws IOException {
out.print(c);
}
@Override
public void print(int i) throws IOException {
out.print(i);
}
@Override
public void print(long l) throws IOException {
out.print(l);
}
@Override
public void print(float f) throws IOException {
out.print(f);
}
@Override
public void print(double d) throws IOException {
out.print(d);
}
@Override
public void print(char[] s) throws IOException {
out.print(s);
}
@Override
public void print(String s) throws IOException {
out.print("Processed String: " + s);
}
@Override
public void print(Object obj) throws IOException {
out.print(obj);
}
@Override
public void println() throws IOException {
out.println();
}
@Override
public void println(boolean x) throws IOException {
out.println(x);
}
@Override
public void println(char x) throws IOException {
out.println(x);
}
@Override
public void println(int x) throws IOException {
out.println(x);
}
@Override
public void println(long x) throws IOException {
out.println(x);
}
@Override
public void println(float x) throws IOException {
out.println(x);
}
@Override
public void println(double x) throws IOException {
out.println(x);
}
@Override
public void println(char[] x) throws IOException {
out.println(x);
}
@Override
public void println(String x) throws IOException {
out.println(x);
}
@Override
public void println(Object x) throws IOException {
out.println(x);
}
@Override
public void write(char[] cbuf, int off, int len) throws IOException {
out.write(cbuf, off, len);
}
}
我有 jsp(比如 Main.jsp
),看起来像这样:
<%@page import="com.myproject.base"%>
<% out = new MyJSPWriter(out); %>
<%= " Hello World" %>
所以,在我的输出中,它看起来像
Processed String: Hello World
现在,如果我有更多的 jsp:includes,并且可能在每一个中都有更多的 inlcudes..例如:
主.jsp
<%@page import="com.myproject.base"%>
<% out = new MyJSPWriter(out); %>
<%= " Hello World" %>
<jsp:include page="Sub1.jsp"></jsp:include>
<jsp:include page="Sub2.jsp"></jsp:include>
Sub1.jsp
<%= " Hello World from sub1.jsp" %>
Sub2.jsp
<%= " Hello World from sub2.jsp" %>
<jsp:include page="Sub3.jsp"></jsp:include>
等等……
但是所有的子 jsp 都会有它们自己的 out
对象... :-(
我们如何在不添加的情况下为所有包含的 jsps 带来相同的行为
<% out = new MyJSPWriter(out); %>
在这些文件中的每一个中(因为我试图在遗留应用程序中使用它)?
还有其他方法可以解决这个问题吗?
附加信息:当我们查看jsp生成的.java文件时,这是部分代码的样子
public void _jspService(HttpServletRequest request, HttpServletResponse response)
throws java.io.IOException, ServletException {
PageContext pageContext = null;
HttpSession session = null;
ServletContext application = null;
ServletConfig config = null;
JspWriter out = null;
Object page = this;
JspWriter _jspx_out = null;
PageContext _jspx_page_context = null;
try {
response.setContentType("text/html");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out = new MyJSPWriter(out);
// and so on writing content ....
最佳答案
如果查看生成的 jsp 类的顶部,您将看到以下行
private static final JspFactory _jspxFactory = JspFactory.getDefaultFactory();
现在,自定义 out
对象的一种可能解决方案是自定义 JspFactory
实现。
步骤
创建自定义 JspFactory 实现
public class MyJspFactory extends JspFactory {
private static JspFactory _myFactory = null;
public MyJspFactory(JspFactory factory) {
_myFactory = factory;
}
//All abstract methods which looks up _myFactory and does the same thing
public PageContext getPageContext(Servlet servlet, ServletRequest request, ServletResponse response, String errorPageURL, boolean needsSession, int bufferSize, boolean autoflush) {
PageContext myCtxt = _myFactory.getPageContext(....)
//Create a customPageContext and wrap myCtxt in it and return
}
}
创建一个 CutsomPageContext 类
public class MyPageContext extends PageContext {
private PageContext _ctxt = null;
public void setPageContext(PageContext ctxt) {
_ctxt = ctxt;
}
//Implement all abstract methods using _ctxt object
@override
public JspWriter getOut() {
JspWriter _out = _ctxt.getOut();
//Wrap _out object using MyJSPWriter as mentioned in question and return back;
}
}
现在在 servlet 的初始化过程中,添加以下行
JspFactory newFactory = new MyJspFactory(JspFactory.getDefaultFactory());
JspFactory.setDefaultFactory(newFactory);
我还没试过。但从概念上讲,它应该有效。如果您可以通过此实现您想要的,请告诉我们。
祝你好运!
关于java - JSP:使用 'out' ( jspWriter) 的委托(delegate)和 jsp includes 来改变表达式的行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29508245/
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicates: what is the difference between #include and #include “fi
我想使用 #include 指令,其文件名作为外部定义的宏传递。 例如 #include #FILE".h" 其中 FILE 将被定义为字符串 MyFile(不带引号),结果为 #include "M
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我想在当前目录及其子目录下的每个 .m 文件中查找所有出现 ncread 的情况。我使用以下命令: grep -R --include="\.m" ncread . 但是该命令没有返回任何内容。 gr
有时我会遇到这样的情况,我发现我需要为大型第三方文件制作一个#include,这样我才能使用一个函数或一个小类,这让我感到内疚,因为我知道这已经消失了增加我的编译时间,因为当我只想要一个功能时它会编译
这个问题在这里已经有了答案: 关闭13年前. Possible Duplicate: what is the difference between #include and #include “fi
我正在尝试通过应用程序加载器提交应用程序。我收到这个错误。但我已经检查了build设置,所有三种架构都包含在有效架构设置中。 最佳答案 断开任何设备,只保留“iOS 设备”中的选项并将其存档。 关于i
Please check this demo plunker更好地理解我的问题。 在我的主页上有一个表格。每个表行后面都有一个最初隐藏的空行。单击第一行时,我使用指令在其下方的空行中注入(inject
我正在使用 mkdocs 创建 html 网页和片段扩展以将我的主文档分成小块。我有一个难以理解的错误: 在我制作的文件file1.md中: --8<-- includes/some_rep/frag
include的推荐方式是什么?您项目的所有文件? 我见过很多使用类似结构的例子: include 的有序列表单个顶级文件(定义 Module 的文件,或应用程序中的“主”文件)中的语句。 这似乎也是
我想知道如何使用 fx:include与 JavaFX Scene Builder 结合使用,因此: 想象我有一个 BorderPane (文件 borderpane.fxml)。在中间部分我想放一个
我看到 Fortran 有“调用”和“包含”语句。两者有什么区别? .i 文件类型有什么意义吗? 即: include 'somefile.i' call 'somesubroutine.f' 谢谢!
这很挑剔,可能没有任何实际用途。我只是好奇... 在 C++20 工作草案 (n4861) 中, header 名称定义为: (5.8) header-name: " q-char-
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: What is the difference between #include and #include “fil
我有一个非常庞大且臃肿的类,我想将它拆分成单独的文件,但它应该对用户完全透明并且与使用该类的现有项目兼容。 特别是,我有自己的 ImageMatrix 类,它定义了大量的一元函数、大量带有标量的二元函
我是 grep 的新手,在重构 C 和 C++ 文件的过程中,我遇到了替换系统的问题,包括 #include <>与本地包括 #include "" . 有没有一种方法可以将 grep 与任何替代工具
我正在制作一个 Spring MVC web 项目,我必须有一个常量 header 。 我的基本要求是“我们希望在所有屏幕上都有一个标题,以显示谁登录了 ProjectA。” 我从这里“What is
在 SWIG 中,“%include”指令与标准 C“#include”有什么区别? 例如,在所有教程中,为什么它们通常看起来像这样: %module my_module %{ #include "M
假设我们有这个头文件: MyClass.hpp #pragma once #include class MyClass { public: MyClass(double); /* .
我已经在一个项目上工作了一段时间,该项目实现了一个使用 C 库的自定义框架。该框架是用 Swift 编写的,我创建了一个模块来向 Swift 公开 C 头文件。该框架是在不同的项目中启动的,然后将该框
我是一名优秀的程序员,十分优秀!