Maven创建项目

略…
具体过程可参考用Maven创建第一个web项目

配置Spring MVC

  1. 导入Spring MVC 需要的包
    在pom.xml 文件下加入:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
       <!-- spring mvc begin -->
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>3.2.6.RELEASE</version>
    </dependency>
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context-support</artifactId>
    <version>3.2.6.RELEASE</version>
    </dependency>
    <!-- spring mvc end -->
  2. 添加baseweb-servlet.xml文件
    在WEB-INF 目录下 添加baseweb-servlet.xml文件,启用注解和添加自动包扫描

    1
    2
    3
    4
    5
    <!-- 启用springmvc注解 -->
    <context:annotation-config /> <!-- 配置扫描路径 -->
    <context:component-scan base-package="net.admol.baseweb"></context:component-scan>

更多详细可参考使用springMVC实现简单的登录例子

添加Velocity

  1. 在pom.xml 文件下加入:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    <!-- velocity begin -->
    <dependency>
    <groupId>org.apache.velocity</groupId>
    <artifactId>velocity</artifactId>
    <version>1.6.2</version>
    </dependency>
    <dependency>
    <groupId>org.apache.velocity</groupId>
    <artifactId>velocity-tools</artifactId>
    <version>1.3</version>
    </dependency>
    <!-- velocity end -->
  2. baseweb-servlet.xml文件加入velocity配置:

    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
    <!-- velocity view config -->
    <bean id="velocityViewResolver"
    class="org.springframework.web.servlet.view.velocity.VelocityLayoutViewResolver">
    <property name="cache" value="true" />
    <property name="exposeSpringMacroHelpers" value="true" />
    <property name="requestContextAttribute" value="true" />
    <property name="exposeSessionAttributes" value="true" />
    <property name="prefix" value=""></property>
    <property name="order" value="1"></property>
    <property name="allowSessionOverride" value="true"></property>
    <property name="viewNames">
    <list>
    <value>*.vm</value>
    <value>*.htm</value>
    </list>
    </property>
    <property name="contentType" value="text/html; charset=UTF-8"></property>
    <property name="toolboxConfigLocation" value="/WEB-INF/config/velocity-toolbox.xml"></property>
    <property name="viewClass"
    value="org.springframework.web.servlet.view.velocity.VelocityLayoutView" />
    <property name="layoutUrl" value="layout/layout.vm" />
    </bean> <bean id="velocityConfig"
    class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
    <property name="resourceLoaderPath" value="/WEB-INF/velocity/" />
    <property name="velocityProperties">
    <props>
    <prop key="input.encoding">UTF-8</prop>
    <prop key="output.encoding">UTF-8</prop>
    <prop key="parser.pool.size">100</prop>
    <prop key="velocimacro.library">macros/macros.vm</prop>
    <prop key="velocimacro.library.autoreload">true</prop>
    </props>
    </property>
    </bean>
  3. 添加 velocity-toolbox.xml 文件
    在 /src/main/webapp/WEB-INF 目录下添加一个 config 目录,在config下添加一个名为velocity-toolbox.xml的文件:

    1
    2
    3
    4
    5
    6
    7
    8
    <?xml version="1.0"?>
    <toolbox>
    <tool>
    <key>dateTool</key>
    <scope>request</scope>
    <class>org.apache.velocity.tools.generic.DateTool</class>
    </tool>
    </toolbox>
  4. 添加layout.vm
    在 /src/main/webapp/WEB-INF 目录下添加一个 velocity 目录,velocity目下添加一个layout目录,目录下新建一个layout.vm文件,内容如:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>admol</title>
    </head>
    <body class="warp">
    <div class="container">
    <div class="content">
    ${screen_content}
    </div>
    </div>
    </body>
    </html>
  5. 配置macros.vm(非必须)
    /WEB-INF/velocity/macros/目录添加 macros.vm 文件

  6. 测试
    Test.java

    1
    2
    3
    4
    5
    6
    7
    8
    @Controller
    public class Test {
    @RequestMapping(value = "/test.htm")
    public String test(ModelMap mdelMap) {
    mdelMap.addAttribute("test", "hello , this is velocity!");
    return "/testView/testVelocity.vm";
    }
    }

    编写页面
    新建/velocity/testView/testVelocity.vm页面:

    1
    $!test

    启动tomcat ,测试结果:
    整合velocity测试结果

https://github.com/mybatis/generator/releases

整合Mybatis

  1. 引入包
    在pom.xml文件加入:

    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
       <!-- mysql -->
    <dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.31</version>
    </dependency> <!-- mybatis -->
    <dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis-spring</artifactId>
    <version>1.2.2</version>
    </dependency>
    <dependency>
    <groupId>org.mybatis</groupId>
    <artifactId>mybatis</artifactId>
    <version>3.2.0</version>
    </dependency>
    <dependency>
    <groupId>commons-dbcp</groupId>
    <artifactId>commons-dbcp</artifactId>
    <version>1.2</version>
    </dependency> <!-- spring jdbc -->
    <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>3.2.6.RELEASE</version>
    </dependency>
  2. 准备数据库
    创建一个名为demo的数据库

    1
    2
    3
    4
    5
    6
    7
    8
    9
    <!-- 创建表 -->
    CREATE TABLE `user` (
    `id` varchar(32) NOT NULL,
    `user_id` varchar(32) NOT NULL,
    `user_name` varchar(64) NOT NULL,
    PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    <!-- 插入测试数据 -->
    INSERT INTO `user` VALUES ('1', '1000', 'admol');
  3. 添加配置文件
    在 /src/main/resources 下新建folder :spring ,新建 spring-dao.xml配置文件:

    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
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"
    default-autowire="byName"> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
    destroy-method="close">
    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    <property name="url" value="jdbc:mysql://127.0.0.1:3306/demo" />
    <property name="username" value="test" />
    <property name="password" value="123456" />
    <!-- 初始化连接大小 -->
    <property name="initialSize" value="5"></property>
    <!-- 连接池最大数量 -->
    <property name="maxActive" value="20"></property>
    <!-- 连接池最大空闲 -->
    <property name="maxIdle" value="20"></property>
    <!-- 连接池最小空闲 -->
    <property name="minIdle" value="1"></property>
    <!-- 获取连接最大等待时间 -->
    <property name="maxWait" value="60000"></property>
    </bean> <!-- spring和MyBatis完美整合,不需要mybatis的配置映射文件 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <!-- 自动扫描mapper.xml文件 -->
    <property name="mapperLocations" value="classpath:sqlmap/*.xml"></property>
    </bean> <!-- DAO接口所在包名,Spring会自动查找其下的类 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
    <property name="basePackage" value="net.admol.baseweb.dal.dao" />
    <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
    </bean>
    </beans>

    在web.xml加入:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
    classpath*:spring/*.xml
    </param-value>
    </context-param>
  4. 生成do、DAO、Mapping
    在 /src/main/resources 下新建folder : sqlmap,
    新建包net.admol.baseweb.dal.daonet.admol.baseweb.dal.dateobject
    配置 Mybatis-generator.xml 点击查看代码
    下载相应包:mybatis-generator-core-1.3.2.jarmysql-connector-java-5.1.31.jar并与generatorConfig.xml文件位于同一目录下,
    然后执行命令java -jar mybatis-generator-core-x.x.x.jar -configfile generatorConfig.xml -overwrite 更多命令使用

  5. 测试
    修改 Test.java:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    @Controller
    public class Test {
    @Autowired
    private UserMapper userMapper; @RequestMapping(value = "/test.htm")
    public String test(ModelMap mdelMap) {
    mdelMap.addAttribute("test", "hello , this is velocity!!!");
    testDB(mdelMap);
    return "/testView/testVelocity.vm";
    } public void testDB(ModelMap mdelMap) {
    UserExample ss = new UserExample();
    ss.createCriteria().andUserIdEqualTo("1000");
    List<User> list = userMapper.selectByExample(ss);
    mdelMap.addAttribute("list", list);
    System.out.println("测试结果size:" + list.size());
    }
    }

修改 testVelocity.vm:

1
2
3
4
5
6
$!test

#foreach($userInfo in $!list)
</br>
$!{velocityCount}. $!userInfo.userName
#end

启动romcat,输入http://localhost:8080/baseweb/test.htm,测试结果:
整合Mybatis测试结果
成功访问数据库!

Maven项目管理:SpringMVC+Mybatis+Velocity整合笔记的更多相关文章

  1. Spring+SpringMVC+MyBatis+easyUI整合

    进阶篇 Spring+SpringMVC+MyBatis+easyUI整合进阶篇(一)设计一套好的RESTful API 优化篇 Spring+SpringMVC+MyBatis+easyUI整合优化 ...

  2. Spring+SpringMVC+MyBatis+easyUI整合基础篇

    基础篇 Spring+SpringMVC+MyBatis+easyUI整合基础篇(一)项目简介 Spring+SpringMVC+MyBatis+easyUI整合基础篇(二)牛刀小试 Spring+S ...

  3. Spring+SpringMVC+MyBatis+easyUI整合基础篇(六)maven整合SSM

    写在前面的话   承接前文<Spring+SpringMVC+MyBatis+easyUI整合基础篇(五)讲一下maven>,本篇所讲述的是如何使用maven与原ssm项目整合,使得一个普 ...

  4. Spring+SpringMVC+MyBatis+easyUI整合进阶篇(二)RESTful API实战笔记(接口设计及Java后端实现)

    写在前面的话 原计划这部分代码的更新也是上传到ssm-demo仓库中,因为如下原因并没有这么做: 有些使用了该项目的朋友建议重新创建一个仓库,因为原来仓库中的项目太多,结构多少有些乱糟糟的. 而且这次 ...

  5. Spring+SpringMVC+MyBatis+easyUI整合基础篇(八)mysql中文查询bug修复

    写在前面的话 在测试搜索时出现的问题,mysql通过中文查询条件搜索不出数据,但是英文和数字可以搜索到记录,中文无返回记录.本文就是写一下发现问题的过程及解决方法.此bug在第一个项目中点这里还存在, ...

  6. Spring+SpringMVC+MyBatis+easyUI整合基础篇(十二)阶段总结

    不知不觉,已经到了基础篇的收尾阶段了,看着前面的十几篇文章,真的有点不敢相信,自己竟然真的坚持了下来,虽然过程中也有过懒散和焦虑,不过结果还是自己所希望的,克服了很多的问题,将自己的作品展现出来,也发 ...

  7. Spring+SpringMVC+MyBatis+easyUI整合优化篇(二)Log4j讲解与整合

    日常啰嗦 上一篇文章主要讲述了一下syso和Log间的一些区别与比较,重点是在项目的日志功能上,因此,承接前文<Spring+SpringMVC+MyBatis+easyUI整合优化篇(一)Sy ...

  8. Spring+SpringMVC+MyBatis+easyUI整合优化篇(四)单元测试实例

    日常啰嗦 前一篇文章<Spring+SpringMVC+MyBatis+easyUI整合优化篇(三)代码测试>讲了不为和不能两个状态,针对不为,只能自己调整心态了,而对于不能,本文会结合一 ...

  9. Spring+SpringMVC+MyBatis+easyUI整合进阶篇(十五)阶段总结

    作者:13 GitHub:https://github.com/ZHENFENG13 版权声明:本文为原创文章,未经允许不得转载. 一 每个阶段在结尾时都会有一个阶段总结,在<SSM整合基础篇& ...

随机推荐

  1. 数据库简述(以MySQL为例)

    一.数据库中的概念 1.数据库是用户存放数据.访问数据.操作数据的存储仓库,用户的各种数据被有组织地存放在数据库中.可以随时被有权限的用户查询.统计.添加.删除和修改.可以说,数据库是长期存储在计算机 ...

  2. 安装lszrz,用于上传文件

    wget http://down1.chinaunix.net/distfiles/lrzsz-0.12.20.tar.gztar zxvf lrzsz-0.12.20.tar.gzcd lrzsz- ...

  3. P3957 跳房子(二分答案+单调队列优化DP)

    题目链接:https://www.luogu.org/contestnew/show/4468 题目大意:跳房子,也叫跳飞机,是一种世界性的儿童游戏,也是中国民间传统的体育游戏之一. 跳房子的游戏规则 ...

  4. web请求响应

    转载自:SanMaoSpace 1.Web开发的定义首先看看微软对Web开发的定义:Web开发是一个指代网页或网站编写过程的广义术语.网页使用 HTML.CSS 和 JavaScript编写.这些页面 ...

  5. gradle eclipse 配置

    http://blog.csdn.net/caolaosanahnu/article/details/17022321 从gradle官网下载 解压,配置环境变量,gradle -v 验证 gradl ...

  6. LeetCode解题报告—— Interleaving String

    Given s1, s2, s3, find whether s3 is formed by the interleaving of s1 and s2. Example 1: Input: s1 = ...

  7. virtualenv--创建虚拟环境

    一.virtualenv 优点 1.使用不同应用开发环境独立 2.环境升级不影响其他应用,也不会影响全局的python 环境二.安装 pip install virtualenv 三.使用virtua ...

  8. hdu 1698 Just a Hook(线段树区间修改)

    传送门:Just a Hook Problem Description In the game of DotA, Pudge’s meat hook is actually the most horr ...

  9. Python3 文件操作基本语法

    对文件操作流程 打开文件,得到文件句柄并赋值给一个变量 通过句柄对文件进行操作 关闭文件 f = open('lyrics') #打开文件 first_line = f.readline() prin ...

  10. hibernate自连接--典型的oracle自带emp实现

    用S2SH三大框架整合,用了oracle自带的表emp,实现了自连接. pojo类: public class Emp implements java.io.Serializable { // Fie ...