gpt4 book ai didi

spring-mvc - 抽象工厂方法模式不适用于 Spring MVC

转载 作者:行者123 更新时间:2023-12-03 23:35:04 24 4
gpt4 key购买 nike

我对 Spring 上的抽象工厂模式实现有疑问。我正在使用 Spring 3 MVC 和 Hibernate 3,如果我不使用抽象工厂方法模式,它们也能正常工作。我不确定我必须向 Controller 添加什么才能访问工厂类 (CategoryFactory)。

Controller 或 bean 初始化中是否缺少任何内容?

class SectionsController extends MultiActionController {
/* Do I have to initiate the CategoryFactory here? */

public ModelAndView secList() throws Exception {
CategoryFactory.CategoryType type = CategoryFactory.CategoryType.valueOf("view");
modelMap.addAttribute("sectionList", CategoryFactory.findCategory(type).list(id));
return new ModelAndView("Form", modelMap);
}
}

抽象工厂

public abstract class Category {
public abstract List list(int departId);
}

public class CategoryFactory {
public enum CategoryType { firstclass, secondClass, ... }
public static Category findCategory(CategoryType categoryType) {
// Create type specific Category implementation
}
}

最佳答案

应该是:类 SectionsController 扩展了 MultiActionController {

  private HibernateTemplate hibernateTemplate;

public void setSessionFactory(SessionFactory sessionFactory) {
this.hibernateTemplate = new HibernateTemplate(sessionFactory);
}

公共(public) ModelAndView secList() 抛出异常 { CategoryFactory.CategoryType 类型 = CategoryFactory.CategoryType.valueOf(" View "); modelMap.addAttribute("sectionList",CategoryFactory.findCategory(type).list(hibernateTemplate,id); 返回新的 ModelAndView("Form", modelMap); }

关于spring-mvc - 抽象工厂方法模式不适用于 Spring MVC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4822351/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com