码迷,mamicode.com
首页 > 其他好文 > 详细

ssh框架

时间:2016-07-09 00:34:46      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

建项目时 选择tomcat running time 这样建成后有

Hibernate  4.1.4(勾选core)

Spring 4.1.0   Facets里 选择一个Module    

其它 全选

Struts 2.1

Core  不选第一个

Facets 选最新的spring

选择 struts和spring 兼容 的jar包

记得添加mysql的jar包

将 applicationContext.xml   struts.xml  log4j.properties  web.xml

放在指定位置  修改 连接数据库 信息  及 包名 即可

 

@ParentPackage("default")
@Namespace("/")
@Scope("prototype")
public class BaseAction extends ActionSupport {

 

 

@Scope("prototype")
@Component
@Action(value = "ArticleAction", results = {
  @Result(name = "addArticleUI", location = "/jsp/adminArticle/addArticleUI.jsp"),
  @Result(name = "editeSave", location = "ArticleAction!articleManager.action",type="redirectAction"),

})
public class ArticleAction extends BaseAction {

 

 

 

@Repository("articleDao")
public class ArticleDao extends BaseDao<TArticle> {

 

 

@Entity
@Table(name="ARTICLE"
,schema="cgowl"
)

public class TArticle  implements java.io.Serializable{

 

 

 

@Controller("articleService")
public class ArticleService implements IArticleService{

 

ssh框架

标签:

原文地址:http://www.cnblogs.com/ruush/p/5654825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!