gpt4 book ai didi

java - JSP解析错误

转载 作者:太空宇宙 更新时间:2023-11-04 08:16:43 25 4
gpt4 key购买 nike

这是我第一次尝试使用 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>

最佳答案

feed.jsp:69:16: Syntax error, insert ";" to complete Statement

正如错误所示,您需要插入 ; 来完成以下行的语句:

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

因此,所以:

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

关于java - JSP解析错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10286048/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com