基于flex4技术从零开发flex博客系统 : 2 与servlet服务端交互
2009-05-05 12:04:27 来源:WEB开发网核心提示: 这个类继承于HttpServlet,覆盖doGet方法,基于flex4技术从零开发flex博客系统 : 2 与servlet服务端交互(3),用于处理http get请求,让它处理来自于/gapp_flexblog/hello的url,打开cmd,输入:curl http://localh
这个类继承于HttpServlet,覆盖doGet方法,用于处理http get请求。让它处理来自于/gapp_flexblog/hello的url,在web.xml添加如下配置片段:
<servlet>
<servlet-name>helloWorld</servlet-name>
<servlet-class>sban.flexblog.server.HelloWorldServlet</servlet-class>
</servlet>
…
<servlet-mapping>
<servlet-name>helloWorld</servlet-name>
<url-pattern>/gapp_flexblog/hello</url-pattern>
</servlet-mapping>
启动gapp_flexblog项目,我们web server运行正常:
如果你安装了curl,现在就可以用它测试HelloWorldServlet类是否工作正常,打开cmd,输入:
curl http://localhost:8080/gapp_flexblog/hello?name=sban
返回的结果如下:
现在我们要用flex来调用Servlet,在gapp_flexblog_client下,修改Index.mxml代码如下:
更多精彩
赞助商链接