WEB开发网
开发学院图形图像Flash 基于flex4技术从零开发flex博客系统 : 2 与servle... 阅读

基于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运行正常:

基于flex4技术从零开发flex博客系统 : 2 与servlet服务端交互

基于flex4技术从零开发flex博客系统 : 2 与servlet服务端交互

如果你安装了curl,现在就可以用它测试HelloWorldServlet类是否工作正常,打开cmd,输入:

curl http://localhost:8080/gapp_flexblog/hello?name=sban

返回的结果如下:

基于flex4技术从零开发flex博客系统 : 2 与servlet服务端交互

现在我们要用flex来调用Servlet,在gapp_flexblog_client下,修改Index.mxml代码如下:

上一页  1 2 3 4 5  下一页

Tags:基于 flex 技术

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接