如何访问一个servelt类对象
作者:互联网
如何访问一个servelt类对象
- 自己写一个类,通常名字为xxxController (又可为Servelt Action)(一般xxx与html名字相对应)
- 继承一个父类HttpServlet
- 重写一个方法service
- 方法中有HttpServeltRequest HttpServeltResponse
- 方法中还有两个异常ServeltException IOException
- 方法没有返回值 void类型
- 需要告知tomcat有一个自己定义类帮忙管理 web文件夹 WEB-INT文件夹
需要配置web.xml 请求名字—真实类全名 映射关系
<servlet>
<servlet-name>用来配对的名字</servlet-name>
<servlet-class></servlet-class>
</servlet>
<servelt-mapping>
<servelt-name>用来配对的名字</servelt-name>
<url-pattern>请求名字</url-pattern>
</servelt-mapping>
- 浏览器发送请求
标签:web,请求,对象,访问,名字,文件夹,servelt,方法 来源: https://blog.csdn.net/weixin_44824799/article/details/112853764