类 ActionFactoryBeanForSpring<T>

java.lang.Object
com.iohao.game.action.skeleton.ext.spring.ActionFactoryBeanForSpring<T>
所有已实现的接口:
ActionFactoryBean<T>, org.springframework.beans.factory.Aware, org.springframework.context.ApplicationContextAware

public class ActionFactoryBeanForSpring<T> extends Object implements ActionFactoryBean<T>, org.springframework.context.ApplicationContextAware
spring集成
     把 action 交由 spring 管理

     对于 action 的解释可以参考这里:
     action
 
作者:
渔民小镇
日期:
2022-03-22
  • 方法详细资料

    • getBean

      public T getBean(ActionCommand actionCommand)
      从接口复制的说明: ActionFactoryBean
      获取 action 类的对象
           添加了 ActionController 注解的类,是一个 action 类
       
      指定者:
      getBean 在接口中 ActionFactoryBean<T>
      参数:
      actionCommand - actionCommand
      返回:
      action 类的实例化对象
    • getBean

      public T getBean(Class<?> actionControllerClazz)
      从接口复制的说明: ActionFactoryBean
      通过 action class 得到对应 bean
      指定者:
      getBean 在接口中 ActionFactoryBean<T>
      参数:
      actionControllerClazz - action class
      返回:
      action 类的实例化对象
    • setApplicationContext

      public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext) throws org.springframework.beans.BeansException
      指定者:
      setApplicationContext 在接口中 org.springframework.context.ApplicationContextAware
      抛出:
      org.springframework.beans.BeansException
    • me

      public static ActionFactoryBeanForSpring me()