用spring2写的service怎么注入到struts2的action中去
答案:1 悬赏:30 手机版
解决时间 2021-02-19 08:15
- 提问者网友:抽煙菂渘情少年
- 2021-02-19 01:29
用spring2写的service怎么注入到struts2的action中去
最佳答案
- 五星知识达人网友:轮獄道
- 2021-02-19 01:49
在action中私有化service属性,并生成set方法。同时在配置文件中将service的bean注入到action的bean中
例如:配置文件中:
action中:
public class OrderAction extends ActionSupport{
// 注入OrderService
private OrderService orderService;
public void setOrderService(OrderService orderService) {
this.orderService = orderService;
}
例如:配置文件中:
action中:
public class OrderAction extends ActionSupport{
// 注入OrderService
private OrderService orderService;
public void setOrderService(OrderService orderService) {
this.orderService = orderService;
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯