Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的管理器类和数据访问对象 (DAO) 类位于模型视图控件的模型组中,那么 struts 如何理解哪个是模型,哪个是控制器?
在struts 中,如果你正在扩展Action Class,Struts 会自动将其视为一个Action Object,即控制器,并且在其中你调用你的manager/helperClasses 的方法。流程是:: 框架(RequestDispatcher) 将调用你的Action 类的execute 方法,通过创建Action 类的引用并实例化struts-config.xml 中提到的你的action 类。希望这很有用。