热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

开发基础框架:mybatis3.2.8+hibernate4.0+spring3.0+struts2.3

一:项目下载地址(点击 Source code(zip))https:github.comfzxblgongframe_2014-12-15releases版本:v1.2大小:20
一:项目下载地址(点击 Source code(zip))

https://github.com/fzxblgong/frame_2014-12-15/releases

版本:v1.2
大小:20M

二:ssm(mybatis-3.2.8 +hibernate4.0+spring3.0+struts2.3) version v1.3 功能

新增:
+8.框架在支持mybatis-3.2.8基础上又整合进hibernate4,并支持注释。
+9.使用注释ssh方式实现JqueryMiniUi多选树。实例路径:/organization/organization_tree.jsp

1.action,service,dao,支持spring业务类注释方式依赖注入。 
2.mybatis支持接口注释开发,支持sql mapper的xml配置开发。 
3.集成log4j配置输出文件。 
4.集成常用异步上传ajaxFileupload测试实例。 测试路径:/ajaxfileupload/ajaxupload.jsp
5.集成上传进度百分比进度测试实例。(ajax异步sessionkey计算)
6.集成JqueryMiniUi前端框架。
7.集成用户列表展示功能。(包括分页查询,分页排序,条件查询,按列排序)测试路径:/user/userlist.jsp

三:运行环境

1.JDK "1.6.0_10-rc2";
2.MyEclipse6.5;
3.Tomcat6.0;
4.MySql5.0;
5.Windows7 32bit.

注:
1.因为jqueryminiui分Eclipse和Myeclipse版本,我集成的是Meclipse版本,虽然我没试过eclipse是否正常,但为了测试稳定最好用Myeclipse试下。
2.另外项目下有两个Junit4.0版本的测试类,测试类路径为/src/com/mybatistest,需要引入相关的Junit4.0支持库,谢谢。

 
标签: Struts Spring MyBatis Hibernate ajax File Upload
 

代码片段(11)[全屏查看所有代码]

1. [图片] src目录结构.jpg    

技术分享

2. [图片] 用户管理列表.jpg    

技术分享

3. [图片] ajaxfileupload异步上传及进度.jpg    

技术分享

4. [图片] organization树.jpg    

技术分享

5. [代码]bean.xml spring配置文件     

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
"1.0" encoding="UTF-8"?>
"http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:cOntext="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="
         http://www.springframework.org/schema/beans
         http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
         http://www.springframework.org/schema/context
         http://www.springframework.org/schema/context/spring-context-3.2.xsd
         http://www.springframework.org/schema/aop
         http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
         http://www.springframework.org/schema/tx
         http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">
 
    
    
    package="com" />
    
    "dataSource"
        class="org.apache.commons.dbcp.BasicDataSource"
        destroy-method="close">
        "driverClassName" value="com.mysql.jdbc.Driver" />
        "url"
            value="jdbc:mysql://127.0.0.1:3306/mybatis" />
        "username" value="root" />
        "password" value="admin" />
    
    "sqlSessionFactory"
        class="org.mybatis.spring.SqlSessionFactoryBean">
        "dataSource" ref="dataSource" />
        "configLocation"
            value="classpath:mybatis-config.xml"/>
        "typeAliasesPackage" value="com.mybatis.model"/>
    
    
     
    
    "transactionManager"
        class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        "dataSource" ref="dataSource" />
    
    
    class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        "basePackage" value="com.mybatis.dao"/>
        
         
        "sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
    
    
    "sqlSession" class="org.mybatis.spring.SqlSessionTemplate">
       "0" ref="sqlSessionFactory" />
    
     
      
    "sessionFactory"
        class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
        "dataSource" ref="dataSource" />
        
        "packagesToScan" value="com.**.model" />
        "hibernateProperties">
            
                
                
                "hibernate.dialect">
                    org.hibernate.dialect.MySQLDialect
                
                "hibernate.show_sql">true
                "hibernate.format_sql">true
                "hibernate.hbm2ddl.auto">update
            
        
    
    
    "txManager"
        class="org.springframework.orm.hibernate4.HibernateTransactionManager">
        "sessionFactory">
            "sessionFactory" />
        
    
    "txManager" />

6. [代码]1.支持注释 UserDaoImpl.java      

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.mybatis.basedao;
 
import org.mybatis.spring.SqlSessionTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
 
import com.mybatis.model.User;
@Repository
public class UserDaoImpl {
    @Autowired
    private SqlSessionTemplate sqlSessionTemplate;
    public User getUserById(){
        User user = sqlSessionTemplate.selectOne("com.mybatis.dao.UserMapper.selectUserById", 1);
        return user;
    }
}

7. [代码]2.mybatis支持接口注释方式     

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.mybatis.dao;
 
import com.mybatis.model.User;
 
public interface UserMapper {
     
    public User selectUserById(Integer id2);
    public void insertUser(User user);
    /**
     * 注释方式也可使用:
     * 百度:MyBatis-Spring-1.2.2 指导手册
     * @param userId
     * @return
     */
    /*@Select("SELECT * FROM users WHERE id = #{userId}")
    User getUser(@Param("userId") String userId);*/
}

8. [代码]3.log4j日志集成     

?
1
2
3
4
5
log4j.appender.R=org.apache.log4j.RollingFileAppender
log4j.appender.R.File=D\:\\Test_Log4j.log
log4j.appender.R.MaxFileSize=100KB log4j.appender.R.MaxBackupIndex=1
log4j.appender.R.layout=org.apache.log4j.PatternLayout
log4j.appender.R.layout.COnversionPattern=%-d{yyyy-MM-dd HH\:mm\:ss} %p %t %c - %m%n

9. [代码]4.ajaxFileUpload ajaxupload.jsp     

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"loading" src="${pageContext.request.contextPath}/ajaxfileupload/loading.gif" java string">"display:none;">
    "form" action="" method="POST" enctype="multipart/form-data">
    "fileToUpload" type="file" size="45" name="fileToUpload" class="input"/>
    
    
"percent" java string">"border:1px solid blue;width:200px;height:15px;" >
        
"percontent">
        
    
function ajaxFileUpload()
{
//执行异步上传...
}
function getPer(){
//获得百分比例进度
}

10. [代码]OrganizationAction.java     

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.myssh.action;
 
import java.beans.IntrospectionException;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
 
import com.myssh.model.Organization;
import com.myssh.service.OrganizationService;
import com.ssh.baseaction.BaseAction;
import com.util.BeanToMapUtil;
@Component
public class OrganizationAction extends BaseAction{
    @Autowired
    private OrganizationService organizationService;
    @Override
    public Object getModel() {
        // TODO Auto-generated method stub
        return null;
    }
 
    @Override
    public void prepare() throws Exception {
        // TODO Auto-generated method stub
         
    }
    public String toOrganizationTree(){
        return "to_organization_tree";
    }
    public void getTreeDataList() throws IOException, IntrospectionException, IllegalAccessException, InvocationTargetException{
        List organizatiOnList= this.organizationService.getOrgTree();
        List orgMapList = new ArrayList();
        for(Organization org : organizationList){
            Map orgMap = BeanToMapUtil.convertBean(org);
            orgMapList.add(orgMap);
            System.out.println(orgMap);
        }
        String json = com.util.JSON.Encode(organizationList);
        System.out.println(json);
        this.setAjax(json);
    }
}

11. [代码]organization_tree.jsp JqueryMiniUi的tree实现实例     

?
1
2
3
4
5
6
    "tree2" class="mini-tree" url="${pageContext.request.contextPath}/organization/getTreeDataList.do" java string">"width:300px;height:250px;padding:5px;"
       showTreeIcon="true" textField="name" idField="id" parentField="p_id" resultAsTree="false" 
       allowSelect="false" enableHotTrack="false" expandOnLoad="true"
       showCheckBox="true" checkRecursive="false" autoCheckParent="true"
       >
   

开发基础框架:mybatis-3.2.8 +hibernate4.0+spring3.0+struts2.3


推荐阅读
  • ED Tree HDU4812 点分治+逆元
    这道题非常巧妙!!!我们进行点分治的时候,算出当前子节点的所有子树中的节点,到当前节点节点的儿子节点的距离,如下图意思就是当前节点的红色节点,我们要求出红色节点的儿子节点绿色节点, ... [详细]
  • 本文介绍了基于Java的在线办公工作流系统的毕业设计方案,涵盖了MyBatis框架的应用、源代码分析、调试与部署流程、数据库设计以及相关论文撰写指导。 ... [详细]
  • 本文概述了在GNU/Linux系统中,动态库在链接和运行阶段的搜索路径及其指定方法,包括通过编译时参数、环境变量及系统配置文件等方式来控制动态库的查找路径。 ... [详细]
  • 第1章选择流程控制语句1.1顺序结构的基本使用1.1.1顺序结构概述是程序中最简单最基本的流程控制,没有特定的语法结构,按照代码的先后顺序,依次执行,程序中大多数的代码都是这样执行 ... [详细]
  • 现在的新手程序猿,动不动就是框架,就连外面培训的也是框架,我就问一句,没了框架是不是就啥也不会了 ... [详细]
  • 本文详细介绍了Python中的生成器表达式、列表推导式、字典推导式及集合推导式等,探讨了它们之间的差异,并提供了丰富的代码示例。 ... [详细]
  • 利用Cookie实现用户登录状态的持久化
    本文探讨了如何使用Cookie技术在Web应用中实现用户登录状态的持久化,包括Cookie的基本概念、优势及主要操作方法,并通过一个简单的Java Web项目示例展示了具体实现过程。 ... [详细]
  • 本文深入分析了在使用JavaScript中的Date.UTC()方法初始化Date对象时,getDay()方法返回值与预期不符的原因,并提供了相应的解决方案。 ... [详细]
  • 本文详细介绍了JavaScript中数组的转换方法、栈方法、队列方法、重排序方法及操作方法,包括toLocaleString()、toString()、valueOf()等基本转换方法,以及push()、pop()、shift()、unshift()等用于模拟栈和队列行为的方法。 ... [详细]
  • 本文探讨了Java编程语言中常用的两个比较操作符==和equals方法的区别及其应用场景。通过具体示例分析,帮助开发者更好地理解和使用这两个概念,特别是在处理基本数据类型和引用数据类型的比较时。 ... [详细]
  • 本文详细介绍了PHP中的几种超全局变量,包括$GLOBAL、$_SERVER、$_POST、$_GET等,并探讨了AJAX的工作原理及其优缺点。通过具体示例,帮助读者更好地理解和应用这些技术。 ... [详细]
  • 本文详细介绍了如何使用Rufus工具制作一个兼容UEFI启动模式的Windows Server 2008 R2安装U盘,包括必要的软件和步骤。 ... [详细]
  • 本文介绍如何使用 Python 计算两个时间戳之间的时间差,并将其转换为毫秒。示例代码展示了如何通过 `time` 和 `datetime` 模块实现这一功能。 ... [详细]
  • 使用 ModelAttribute 实现页面数据自动填充
    本文介绍了如何利用 Spring MVC 中的 ModelAttribute 注解,在页面跳转后自动填充表单数据。主要探讨了两种实现方法及其背后的原理。 ... [详细]
  • 使用REM和媒体查询实现响应式布局
    本文介绍如何利用REM单位和媒体查询(Media Queries)来创建适应不同屏幕尺寸的网页布局。通过具体示例,展示在不同屏幕宽度下如何调整页面元素的样式。 ... [详细]
author-avatar
long--Journey
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有