1

初めてJSPを使用しようとしましたが、最後の行のリンクで解析エラーが発生しました。私はすでに「;」を持っています。

<%@page contentType="application/atom+xml; charset=utf-8" %><%
String
baseURL = request.getScheme() + "://" + request.getServerName() +
request.getServerPort()+ ":" + request.getContextPath();
Integer id=0;
String link="";
%>

<feed xsi:schemaLocation="http://www.w3.org/2005/Atom ../XMLschemas/atom/atom.xsd"
    xmlns="http://www.w3.org/2005/Atom" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <title type="text">1</title>
    <id><%=baseURL%></id>
    <updated>2012-04-23T15:49:17Z</updated>
    <link rel="self"
        href="https://example.com" />
    <entry>
        <id><%link = baseURL + "/" + Integer.toString(++id); %><%=link%></id>

Weblogicの場合:

feed.jsp:69:16: Syntax error, insert ";" to complete Statement
                <id><%link = "good_subjectdoc_relativeurl.xml"%></id>

残りのフィード:

    <title type="text">good_subjectdoc_absoluteurl_samebase_singledocname.xml
        </title>
        <updated>2012-04-23T15:49:17Z</updated>
        <author>
            <name>TEST</name>
        </author>
        <contributor>
            <name>TEST</name>
        </contributor>
        <link rel="alternate" type="application/xml" title="Subject Document"
            href="<%=link%>" />
            <category term="TEST" />
                <content>
                                    Content             
                              </content>
    </entry>

4

1 に答える 1

1

feed.jsp:69:16:構文エラー、「;」を挿入 ステートメントを完了するには

;エラーが示すように、次の行にステートメントを完了するために挿入する必要があります。

<id><%link = "good_subjectdoc_relativeurl.xml"%></id>

したがって、そう:

<id><%link = "good_subjectdoc_relativeurl.xml";%></id>
于 2012-04-23T19:04:15.027 に答える