上一页 1 ··· 16 17 18 19 20
摘要: #Servlet入门2 生命周期 生命周期 从程序产生到死亡的过程即为一个生命周期,对应 servlet 中的三个方法:init()、service()、destory() 重写 service() 方法,无论是什么请求,都会使用 service() 方法,然后在 service() 内部再进行细分 阅读全文
posted @ 2022-05-15 16:49 ppqppl 阅读(46) 评论(0) 推荐(0) 编辑
摘要: servlet入门 获取参数 获取信息 设置表单 <form action="add" method="post"> <!-- 通过post方式进行发送,发给add(add知识一个代号) --> 名称:&nbsp;<input type="text" name="fname"/><br/> 价格:& 阅读全文
posted @ 2022-05-15 16:43 ppqppl 阅读(17) 评论(0) 推荐(0) 编辑
摘要: Tomcat Tomcat官网:http://tomcat.apache.org/ 本次学习过程中使用 Tomcat8.xxx 配置系统环境 在系统环境中添加:CATALINA_BASE == D:\tomcat8 ; CATALINA_HOME == D:\tomcat8 ; 配置好后在path环 阅读全文
posted @ 2022-05-15 14:59 ppqppl 阅读(46) 评论(1) 推荐(0) 编辑
摘要: Tomcat Tomcat官网:http://tomcat.apache.org/ 本次学习过程中使用 Tomcat8.xxx 配置系统环境 在系统环境中添加:CATALINA_BASE == D:\tomcat8 ; CATALINA_HOME == D:\tomcat8 ; 配置好后在path环 阅读全文
posted @ 2022-05-15 14:26 ppqppl 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20