m----actionform , other blogic , do some bussiness logic
v----jsp/html etc.. , you just right the <form>,powerful struts-tag for you composing them
c---- action servlet ,you wanna do nothing here
xml config-----struts-config.xml ,config the action and action form,mappings for you web application

解决方案 »

  1.   

    需要几个jar包。
    需要struts-config.xml
    需要action类
    需要form类。
    需要jsp
      

  2.   

    在web Application 的开发中 Directory是用来放什么东西的,是JSP SERVLET的吗??
      

  3.   

    中文版的目前没有,英文版本人倒有4本,
    Sams.Struts.Kick.Start
    Programming Jakarta Struts
    Wiley - Mastering Jakarta Struts
    Strtus in Action想要的人发mail.
      

  4.   

    在JSP里怎样请求业务方法???那位大侠能给点代码吗??
      

  5.   

    在Struts框架中,一般都是由action类调用业务方法,jsp只管显示
      

  6.   

    我想问一下大侠:我现在有了action类,actionform类,JSP,在action类定义了几个业务方法,用什么调用:)
      

  7.   

    我想问一下大侠:
    我在Jbuilder8开发JSP时,只要改变一下文件内容,就保存不了,报错信息:
    Count NOT save file "xx.jsp"com.borland.primetime.util.AssertionException: gbk
    这是为什么???
    谢谢!!!
      

  8.   

    jsp叶面加上:<%@ page contentType="text/html;charset=GB2312" %>
    项目属性 encoding 改为gb2312
      

  9.   

    重载父类 Action 的execute方法,将你的业务方法写在 execute 方法中就行了,Struts架构中会调用你的Action类的 execute方法。再在struct-config.xml 中指定处理请求的类为你的Action类就行了。