gpt4 book ai didi

eclipse - 为什么jsp是:include pages with get parameters marked as error in eclipse?

转载 作者:行者123 更新时间:2023-12-02 20:49:24 24 4
gpt4 key购买 nike

我的同事正在使用 netbeans,以下内容验证良好:

<jsp:include page="/somepage.jsp?parameter=value"/>

但是在 eclipse 中我得到

Fragment was not found at the selected path

这与添加参数有关,因为以下内容验证良好:

<jsp:include page="/somepage.jsp"/>

有办法解决这个问题吗?

最佳答案

您应该使用<jsp:param>传递请求参数。

<jsp:include page="/somepage.jsp">
<jsp:param name="parameter1" value="value1"/>
</jsp:include>

关于eclipse - 为什么jsp是:include pages with get parameters marked as error in eclipse?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12562341/

24 4 0