首页 > 代码库 > Struts2 convention插件试用+ Spring+Hibernate SSH整合
Struts2 convention插件试用+ Spring+Hibernate SSH整合
第一步,引入struts2-convention-plugin-2.2.1.jar
然后,改动配置文件。
我是在struts.properties文件里改动的:
struts.objectFactory = spring struts.devMode = true struts.i18n.encoding = UTF-8 struts.convention.result.path =/WEB-INF/jsp/ struts.convention.package.locators = action,actions,struts,struts2,control,controls,test struts.convention.action.suffix =Action,Control
第一行。与spring整合。
第二行,启用struts开发模式。方便调试。
第三行,i18n
第四行,指定默认视图的路径,全部视图资源将从此路径下搜索。
第五行。指定搜索的包名。因为个人喜欢将控制类的包命名为*.control,所以增加control包。又增加了test包
第六行。指定class文件的文件结尾名。比方,默认仅仅搜索AbcAction这种类。如今也可搜索AbcControl这种类。
Java測试代码(部分)项目地址:http://localhost:8080/Photo/
package com.lgh.test; import java.util.List; import org.apache.struts2.ServletActionContext; import org.apache.struts2.convention.annotation.Namespace; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Scope; import org.springframework.stereotype.Controller; import org.apache.struts2.convention.annotation.Actions; import org.apache.struts2.convention.annotation.Result; import org.apache.struts2.convention.annotation.Results; import com.lgh.common.tools.json.JsonUtil; import com.lgh.sys.entity.User; import com.opensymphony.xwork2.Action; @Scope("prototype") @Controller @Namespace("/name")//指定命名空间 public class TestControl implements Action { @Autowired private TestService testService; private User user; private String name; private List<User> List; public String getName() { return name; } public void setName(String name) { this.name = name; } public User getUser() { return user; } public void setUser(User user) { this.user = user; } // http://localhost:8080/Photo/name/test 能够訪问到此action @org.apache.struts2.convention.annotation.Action(value = http://www.mamicode.com/"test", results = {>SSH整合后的框架下载,请用MyEclipse导入。
MySQL的driver和jackson1.9.11-all的jar包没有上传。请自行搜索下载。
http://download.csdn.net/detail/lgh06/8039749 免积分 全然免费哦。
写的比較烂,见谅……
Struts2 convention插件试用+ Spring+Hibernate SSH整合
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。