码迷,mamicode.com
首页 > 数据库 > 详细

OA项目1:环境搭建之数据库创建与环境添加

时间:2014-10-16 20:38:03      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   ar   java   for   strong   

首注:本学习教程为传智播客汤阳光讲师所公布的免费OA项目视频的文字版,本人用此来加强巩固自己开发知识,如有网友转载,请注明。谢谢。

一   指定数据库:Mysql

  database:oa

  建库语句:create database oa default character set utf8

二   指定ide开发工具:MyEclipse

  项目名称:新建web工程,名字为:OA,并设置项目工程编码:utf-8

  环境所用主要技术框架:JUnit4,Struts2.3.15.1,Hibernate3.6,Spring2.5.6,jQuery,……

三 添加框架环境:

  1.添加JUnit环境:

    右击项目名称 --> Build Path --> Add Libraries --> JUnit,点击next,选择版本为JUnit 4,点击finish。完成JUnit环境添加。

  2.添加Struts2.3.15.1环境:

    添加jar包:

      事先到官网下载好对应版本的项目环境,解压后打开进入apps文件夹里,用好压工具打开struts2-blank.war,点击WEB-INF,

      将lib下面的jar包全部复制到我们OA项目的lib下面。

    添加配置文件:

      用好压工具打开struts2-blank.war,点击WEB-INF,将src --> java下面的struts.xml拷贝到我们OA项目的src下面。然后将

      struts.xml里的内容修改为如下内容:

 1 <?xml version="1.0" encoding="UTF-8" ?>
 2 <!DOCTYPE struts PUBLIC
 3     "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
 4     "http://struts.apache.org/dtds/struts-2.3.dtd">
 5 
 6 <struts>
 7     
 8     <!-- 设置为开发者模式 -->
 9     <constant name="struts.devMode" value="true" />
10     <!-- 把扩展名设置为.action,如name里的内容记不住,请在core包里的default.properties里面找 -->
11     <constant name="struts.action.extension" value="action" />
12     <!-- 把主题设置为simple,如name里的内容记不住,请在core包里的default.properties里面找 -->
13     <constant name="struts.ui.theme" value="simple" />
14 
15     <package name="default" namespace="/" extends="struts-default">
16         
17     </package>
18 
19     <!-- Add packages here -->
20 
21 </struts>

      如果xml的代码不提示,在我们下载的项目包里面找,具体位置为:struts-2.3.15.1/src/core/src/main/resources/struts-2.3.dtd。

      然后配置到myeclipse里面即可。

      

      用好压工具打开struts2-blank.war,点击WEB-INF,将web.xml里面的以下内容拷贝到我们的web.xml里面:

 1 <filter>
 2 
 3         <filter-name>struts2</filter-name>
 4 
 5         <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
 6 
 7     </filter>
 8 
 9  
10 
11     <filter-mapping>
12 
13         <filter-name>struts2</filter-name>
14 
15         <url-pattern>/*</url-pattern>
16 
17     </filter-mapping>

  3.添加hibernate3.6的环境:

    添加jar包:

      1)添加核心包:hibernate3.jar

      2)项目包里lib文件夹下面:required里面全部jar包,jpa文件夹里面全部jar包,optional文件夹里c3p0包。

      3)mysql驱动包。

    添加配置文件:

      1)添加hibernate.cfg.xml,具体模板内容如下(在项目环境添加完成之后再做修改):

 1 <!DOCTYPE hibernate-configuration PUBLIC
 2     "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
 3     "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
 4 
 5 <hibernate-configuration>
 6     <session-factory name="foo">
 7         <!-- 显示sql -->
 8         <property name="show_sql">true</property>
 9 
10         <property name="hbm2ddl.auto">update</property>
11         <!-- mysql方言 -->
12         <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
13         <!-- 数据库连接信息 -->
14         <!-- 数据库驱动 -->
15         <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
16         <property name="connection.url">jdbc:mysql:///oa</property>
17         <property name="connection.username">root</property>
18         <property name="connection.password">root</property>
19         <!-- 导入映射文件 
20         <mapping resource="org/hibernate/test/legacy/Simple.hbm.xml"/> -->
21     </session-factory>
22 </hibernate-configuration>

      2)添加XX.hbm.xml模板,内容如下(具体代码开发时添加修改):

1 <?xml version="1.0"?>
2 <!DOCTYPE hibernate-mapping PUBLIC 
3     "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
4     "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
5 
6 <hibernate-mapping package="org.hibernate.test.typedmanytoone">
7 
8 </hibernate-mapping>

  4.添加Spring2.5.6开发环境:

    添加jar包:

      1)核心包:

        spring.jar

      2)依赖包:

        spring2.5.6/lib/aspectj下面所有jar包 

        spring2.5.6/lib/lib/cglib下面的jar包

        spring2.5.6/lib/jakarta-commons/commons-logging.jar(如已经添加就不需要了)               

    添加配置文件applicationConxt.xml,模板内容如下(具体内容在ssh整合时完善):      

 1 <?xml version="1.0" encoding="UTF-8"?>
 2 <!--
 3   - Middle tier application context definition for the image database.
 4   -->
 5 <beans xmlns="http://www.springframework.org/schema/beans"
 6         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 7         xmlns:context="http://www.springframework.org/schema/context"
 8         xmlns:tx="http://www.springframework.org/schema/tx"
 9         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
10                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
11                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
12 
13     <!-- 自动扫描与装配bean -->
14     <context:component-scan base-package="cn.clear.oa"></context:component-scan>
15     
16     
17 </beans>

 

 

OA项目1:环境搭建之数据库创建与环境添加

标签:style   blog   http   color   io   ar   java   for   strong   

原文地址:http://www.cnblogs.com/clear5/p/4029301.html

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