
Servlet
落落叶叶无声
做过后端,现在主前端的开发工程师...
展开
-
JSP自定义标签-Select标签
自定义select标签,未完善package com.sdTag;import java.io.IOException; import java.util.ArrayList; import java.util.List;import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspWriter; import javax.se原创 2017-06-22 21:19:51 · 555 阅读 · 0 评论 -
JSP自定义标签-第一个简单的例子
此例子标签的效果开发步骤定义实体类public class Emp { private String empId; private String name; private String phoneNumber; public Emp() { } public String getEmpId() { return empId; }原创 2017-06-22 20:47:59 · 352 阅读 · 0 评论 -
HTTP Status 405 - HTTP method GET is not supported by this URL
翻译自HTTP method GET is not supported by this URL原文This is the default response of the default implementation of HttpServlet#doGet(). This means that the doGet() method is not properly being @Overriden,翻译 2017-05-15 16:16:48 · 1135 阅读 · 0 评论