SSH之Spring整合struts2

2020-12-13 05:59

阅读:218

标签:创建   请求   col   class   system   public   result   容器   efi   

Struts2+spring整合/result常用类型/拦截器

为什么?通过spring管理Struts2的组件,实现注入

怎么整合?

1.创建项目

2.导包:struts2-spring-plugin struts2-core

 

3.配置文件:web.xml spring-context.xml

web.xml:配置struts2的filert,配置spring的启动加载配置文件,配置spring的监听器

 
  class>
              org.springframework.web.context.ContextLoaderListener
          class>
  contextConfigLocationclasspath:spring-*.xmlmvcclass>
          org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
      class>
  mvc/*

spring-context.xml:配置spring扫描的包

案例:HelloWorld

控制层:

@Controller
//每一个请求都创建一个Action
@Scope("prototype")
public class HelloAction {
    
    @Resource
    private DemoService demoService;
    
    private String message;
    
    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public String execute() {
        message="你好";
        demoService.hello();
        System.out.println("helloworld");
        return "success";
    }
}

Service层

@Service("demoService")
public class DemoServiceImpl implements DemoService{

    public void hello() {
        System.out.println("Service Hello");
        
    }
    
}

 

SSH之Spring整合struts2

标签:创建   请求   col   class   system   public   result   容器   efi   

原文地址:https://www.cnblogs.com/xhwr/p/11160677.html


评论


亲,登录后才可以留言!