web05-CounterServlet
生活随笔
收集整理的這篇文章主要介紹了
web05-CounterServlet
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
電影網(wǎng)站:www.aikan66.com?
項目網(wǎng)站:www.aikan66.com?
游戲網(wǎng)站:www.aikan66.com?
圖片網(wǎng)站:www.aikan66.com?
書籍網(wǎng)站:www.aikan66.com?
學(xué)習(xí)網(wǎng)站:www.aikan66.com?
Java網(wǎng)站:www.aikan66.com?
iOS網(wǎng)站:www.aikan66.com
----
新建web項目,名字web05-CounterServlet
新建servlet,名字CounterServlet
?
public void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {ServletContext context=getServletContext();Integer count = (Integer)context.getAttribute("counter");if(null==count){count = new Integer(1);}else{count = new Integer(count.intValue()+1);}response.setContentType("text/html;charset=utf-8");PrintWriter out=response.getWriter();out.println("該頁面已經(jīng)被訪問了"+"<b>"+count+"</b>"+"次");context.setAttribute("counter", count);out.close();}----
配置web.xml為
<servlet><description>This is the description of my J2EE component</description><display-name>This is the display name of my J2EE component</display-name><servlet-name>CounterServlet</servlet-name><servlet-class>CounterServlet</servlet-class></servlet><servlet-mapping><servlet-name>CounterServlet</servlet-name><url-pattern>/product.html</url-pattern></servlet-mapping>注意:本servlet中的URL指定的是/product.html,對用戶來說是一個靜態(tài)網(wǎng)頁,屏蔽了服務(wù)器的實現(xiàn)細(xì)節(jié)。
?----
瀏覽器訪問:http://localhost:8080/web05-CounterServlet/product.html
結(jié)果:
?
轉(zhuǎn)載于:https://www.cnblogs.com/zhaixing/p/5681119.html
總結(jié)
以上是生活随笔為你收集整理的web05-CounterServlet的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python - socket模块1
- 下一篇: 把URL参数解析成一个Json对象