如何将这部分代码由struts1改为struts2实现
由于我对struts1不熟不知道如何修改。。。。。。。。部分代码如下:struts.xml部分<struts-config><actionpath="/control/p...
由于我对struts1不熟 不知道如何修改。。。。。。。。部分代码如下:
struts.xml部分
<struts-config>
<action path="/control/product/type/list">
<forward name="list" path="test.jsp"/>
</action>
<controller>
<set-property property="processorClass" value="org.springframework.web.struts.DelegatingRequestProcessor"/>
</controller>
</struts-config>
action类部分:
@Controller("/contol/product/type/list")
public class ProductTypeAction extends Action {
@Resource(name="productTypeServiceBean")
private ProductTypeService productTypeService;
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws Exception {
ProductType productType = productTypeService.find(ProductType.class, 3);
request.setAttribute("productType", productType);
return mapping.findForward("list");
}
}
test.jsp页面中只有个取值 ${productType.name}
主要就是这部分了 , 单独struts2测试成功,hibernate与spring整合成功,实体类 包等都修改好了, 如何将以上struts1修改为struts2,主要功能就是通过struts转到test.jsp页面,通过hibernate取到值,如何修改啊。。。。。感谢。。。。。 展开
struts.xml部分
<struts-config>
<action path="/control/product/type/list">
<forward name="list" path="test.jsp"/>
</action>
<controller>
<set-property property="processorClass" value="org.springframework.web.struts.DelegatingRequestProcessor"/>
</controller>
</struts-config>
action类部分:
@Controller("/contol/product/type/list")
public class ProductTypeAction extends Action {
@Resource(name="productTypeServiceBean")
private ProductTypeService productTypeService;
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws Exception {
ProductType productType = productTypeService.find(ProductType.class, 3);
request.setAttribute("productType", productType);
return mapping.findForward("list");
}
}
test.jsp页面中只有个取值 ${productType.name}
主要就是这部分了 , 单独struts2测试成功,hibernate与spring整合成功,实体类 包等都修改好了, 如何将以上struts1修改为struts2,主要功能就是通过struts转到test.jsp页面,通过hibernate取到值,如何修改啊。。。。。感谢。。。。。 展开
2个回答
展开全部
public class ProductTypeAction extends ActionSupport{
private ProductType productType ;
@Resource(name="productTypeServiceBean")
private ProductTypeService productTypeService;
public String getProductTypeById() throws Exception {
productType = productTypeService.find(ProductType.class, 3);
return "SUCCESS";
}
}
struts.xml
<package name="aaa" extends="struts-default">
<action method="getProductTypeById" name="getProductTypeById" class="xxx">
<result name="SUCCESS">/text.jsp</result>
</action>
</package>
private ProductType productType ;
@Resource(name="productTypeServiceBean")
private ProductTypeService productTypeService;
public String getProductTypeById() throws Exception {
productType = productTypeService.find(ProductType.class, 3);
return "SUCCESS";
}
}
struts.xml
<package name="aaa" extends="struts-default">
<action method="getProductTypeById" name="getProductTypeById" class="xxx">
<result name="SUCCESS">/text.jsp</result>
</action>
</package>
网易云信
2023-12-06 广告
2023-12-06 广告
UIkit是一套轻量级、模块化且易于使用的开源UI组件库,由YOOtheme团队开发。它提供了丰富的界面元素,包括按钮、表单、表格、对话框、滑块、下拉菜单、选项卡等等,适用于各种类型的网站和应用程序。UIkit还支持响应式设计,可以根据不同...
点击进入详情页
本回答由网易云信提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询