2

我正在将我的应用程序从迁移Tomcat 7WebSphere 8.5

Tomcat 7 用过

-Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

为了在编译JSP页面时解决双引号问题,我正在搜索它的等效参数WebSphere

我找到了一个 Web 容器自定义属性

com.ibm.wsspi.jsp.evalquotedandescapedexpression=true

因为WAS 8.5但它不起作用。

我收到以下错误:

JSPG0055E: Unable to create an xml attribute from name [] value [%]

基本错误发生在以下情况

<html:input value="<%="abc"%>"></html:input>

现在解决方案是

<html:input value='<%="abc"%>'></html:input>

但在我的情况下这是不可能的,因为有这么多的 JSP,在 Tomcat 中,这个问题是通过添加以下属性来解决的

-Dorg.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false

4

1 回答 1

1

如果您的 JSP 太多,您可以尝试下一个转换代码。它涵盖了许多情况,并且在您可以调整这些特殊情况之后:

package test;

import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.LineNumberReader;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class JSPParser {
    public static void main(String[] args) throws Exception {
        Pattern pattern = Pattern
            .compile("([A-Za-z]+\\w?\\s*=\\s*(\")<%=\\s*[^%>]*\"+[^>]*\\s*%>(\")\\s*)");

        // Pass the input JSP in the first argument
        FileReader fr = new FileReader(args[0]);
        LineNumberReader lnr = new LineNumberReader(fr);
        String fileName = args[0];
        int n = fileName.lastIndexOf("/");

        // You must have a "was" subdirectory from the source location
        fileName = fileName.substring(0, n + 1) + "was/" + fileName.substring(n + 1);

        FileOutputStream fos = new FileOutputStream(fileName);
        String line = null;
        while ((line = lnr.readLine()) != null) {
            Matcher matcher = pattern.matcher(line);
            while (matcher.find()) {
                n = matcher.groupCount();
                for (int i = 2; i <= n; i++) {
                    line = line.substring(0, matcher.start(i)) + "'"
                            + line.substring(matcher.end(i));
                }
            }
            fos.write(line.getBytes());
            fos.write("\n".getBytes());
        }
        fos.flush();
        fos.close();
        lnr.close();
    }
}
于 2013-02-20T16:31:28.260 回答