我希望我的页面如index.jsp
loading(调用get方法)发送index.jsp
页面的数据,例如title。我检查了这个问题但是这个问题解决方案(How to call servlet on jsp page load)在我的网络应用程序中有错误。
这是我的index.jsp
页码(我希望从changeTitle.java
班级发送标题):
<title><c:import url="/sysAdmin/changeTitle.java" />
<c:out value="${message }"></c:out></title>
这是我的changeTitle.java
类get方法:
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.setAttribute("message", "hello");
}
而且我不知道如何在我的项目的index.jsp
中进行分类,而下面是我的项目目录:
答案 0 :(得分:0)
尝试设置响应,而不是请求
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setAttribute("message", "hello");
}
答案 1 :(得分:0)
尝试使用此代码:
<c:out value="<%=request.getAttribute('message')%>">