SSH-基础框架搭建

一、所用工具

Eclipse4.6 neon

Jdk1.7

mysql5.5

Tomcat8.0

Struts2.1+Spring2.5.5+Hibernate3.5.6

注:Jdk1.8并不支持ApplicationContext,建议采用1.7及以下版本。

二、相关下载

流程图解:下载

相关lib包:下载

笔记:下载

项目:下载

项目示例2:下载

总结:下载


三、项目内容、步骤

(一)持久层搭建

1、建立数据库表

#测试表
CREATE TABLE Elec_Text(
    textID varchar(50) not null,
    textName varchar(50),
    textDate datetime,
    textRemark varchar(500)
)

2、建立java bean对象对应数据库表(持久层对象-PO对象)

package com.sw.elec.domain;

import java.util.Date;

/**
 *
 * @author swxc
 * PO持久层对象,对应数据库表Elec_Text
 */
@SuppressWarnings("serial")
public class ElecText implements java.io.Serializable{
//    textID varchar(50) not null,
//    textName varchar(50),
//    textDate datetime,
//    textRemark varchar(500)
    private String textID;
    private String textName;
    private Date textDate;
    private String textRemark;
    public Date getTextDate() {
        return textDate;
    }
    public void setTextDate(Date textDate) {
        this.textDate = textDate;
    }
    public String getTextID() {
        return textID;
    }
    public void setTextID(String textID) {
        this.textID = textID;
    }
    public String getTextName() {
        return textName;
    }
    public void setTextName(String textName) {
        this.textName = textName;
    }
    public String getTextRemark() {
        return textRemark;
    }
    public void setTextRemark(String textRemark) {
        this.textRemark = textRemark;
    }
}

3、创建映射文件ElecText.hbm.xml-建立PO对象与数据库表的关联关系

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
    "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
    <class name="com.sw.elec.domain.ElecText" table="Elec_Text">
        <!-- 主键 -->
        <id name="textID" type="string">
            <!-- 列定义 -->
            <column name="textID" not-null="true" sql-type="varchar(50)"></column>
            <!-- 生成策略 -->
            <generator class="uuid"></generator>
        </id>
        <!-- 字段 -->
        <property name="textName" type="string">
            <column name="textName" sql-type="varchar(50)"></column>
        </property>
        
        <property name="textDate" type="date">
            <column name="textDate" length="50"></column>
        </property>
        
        <property name="textRemark" type="string">
            <column name="textRemark" sql-type="varchar(500)"></column>
        </property>
    </class>
</hibernate-mapping>

4、创建Hibernate.cfg.xml文件,配置数据库连接信息

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
    "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
    <session-factory>
        <property name="hibernate.connection.username">root</property>
        <property name="hibernate.connection.password">0707</property>
        <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/projectweb</property>
        
        <!-- 事务自动提交,使用sessionFactory需要进行此项配置 -->
     <property name="hibernate.connection.autocommit">true</property>
        <!-- 配置方言 -->
        <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
        <!-- 操作数据库的形式 -->
        <property name="hibernate.hbm2ddl.auto">update</property>
        <!-- sql语句 -->
        <property name="hibernate.show_sql">true</property>
        
        <!-- 映射文件 -->
        <mapping resource="com/sw/elec/domain/ElecText.hbm.xml"/>
    </session-factory>
</hibernate-configuration>

5、测试Hibernate是否可用

package com.sw.junit;

import static org.junit.Assert.*;

import java.util.Date;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.junit.Before;
import org.junit.Test;

import com.sw.elec.domain.ElecText;

public class TextHibernate {

    @Before
    public void setUp() throws Exception {
    }

    @Test
    public void testTestElecText() {
        Configuration config = new Configuration();
        config.configure();
        //创建SessionFactory对象
        SessionFactory sf = config.buildSessionFactory();
        //打开session
        Session session = sf.openSession();
        //开启事务
        Transaction tran =  session.beginTransaction();
        //实例化ElecText对象,执行保存操作
        ElecText elecText = new ElecText();
        elecText.setTextName("测试Hibernate");
        elecText.setTextDate(new Date());
        elecText.setTextRemark("测试Hibernate简介");
        
        //保存对象
        session.save(elecText);
        //提交事务
        tran.commit();
        //关闭
        session.close();
    }
}

(二)dao层搭建

1、公共接口

package com.sw.elec.dao;

/**
 *
 * @author admin
 *    公共接口,public method
 * @param <T>
 */
public interface ICommondDao<T> {
    public void save(T entity);//保存方法
}

2、spring配置文件(用于注解方式操作hibernate)-beans.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans  xmlns="http://www.springframework.org/schema/beans"
        xmlns:context="http://www.springframework.org/schema/context"
        xmlns:aop="http://www.springframework.org/schema/aop"
        xmlns:tx="http://www.springframework.org/schema/tx"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
                            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
                            http://www.springframework.org/schema/context
                            http://www.springframework.org/schema/context/spring-context-2.5.xsd
                            http://www.springframework.org/schema/tx
                            http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
                            http://www.springframework.org/schema/aop
                            http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
    <!-- 1、配置注解自动扫描范围 -->
    <context:component-scan base-package="com.sw.elec"></context:component-scan>
    
    <!-- 2、配置数据源 -->
    
    <!-- 3、创建sessionFactory工厂,整合Hibernate入口 -->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <property name="configLocation">
            <value>
                classpath:hibernate.cfg.xml
            </value>
        </property>    
    </bean>
    
    <!-- 4、创建事务管理器 -->
    <bean id="txManage" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>
    
    <!-- 5、以注解的形式管理事务 -->
    <tx:annotation-driven transaction-manager="txManage"/>
</beans>

3、实现公共接口

package com.sw.elec.dao.impl;

import javax.annotation.Resource;

import org.hibernate.SessionFactory;
import org.springframework.orm.hibernate3.support.HibernateDaoSupport;

import com.sw.elec.dao.ICommondDao;

public class CommondDaoImpl<T> extends HibernateDaoSupport implements ICommondDao<T> {

    @Override
    public void save(T entity) {
        // TODO Auto-generated method stub
        //使用hibernate模板进行操作
        this.getHibernateTemplate().save(entity);
    }

    //使用注解
    @Resource(name="sessionFactory")
    public final void setSessionFactoryDi(SessionFactory sessionFactory){
        super.setSessionFactory(sessionFactory);
    }
}

4、单独功能接口(继承于公共接口)

package com.sw.elec.dao;

import com.sw.elec.domain.ElecText;

/**
 *
 * @author admin
 * 单独接口(查询)
 */
public interface IElecTextDao extends ICommondDao<ElecText> {
    //服务节点
    public final static String SERVICE_NAME = "com.sw.elec.dao.impl.ElecTextDaoImpl";
}

5、单独功能接口实现(同时继承于公共接口实现类)

package com.sw.elec.dao.impl;

import org.springframework.stereotype.Repository;

import com.sw.elec.dao.IElecTextDao;
import com.sw.elec.domain.ElecText;

/**
 * 实现单独接口,并且继承公共接口实现类
 * @author admin
 *
 */
@Repository(IElecTextDao.SERVICE_NAME)
public class ElecTextDaoImpl extends CommondDaoImpl<ElecText> implements IElecTextDao {
    
}

6、测试

package com.sw.junit;

import java.util.Date;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.sw.elec.dao.IElecTextDao;
import com.sw.elec.domain.ElecText;

public class TextDao {

    @Before
    public void setUp() throws Exception {
    }

    @Test
    public void saveElecTest() {
        ApplicationContext aContext = new ClassPathXmlApplicationContext("beans.xml");
        IElecTextDao iElecTextDao =  (IElecTextDao)aContext.getBean(IElecTextDao.SERVICE_NAME);
        //实例化PO对象,赋值 保存
        ElecText elecText = new ElecText();
        elecText.setTextName("dao层测试");
        elecText.setTextDate(new Date());
        elecText.setTextRemark("Dao层搭建测试");
        iElecTextDao.save(elecText);
    }
}

(三)Service层搭建(分为接口与实现类)

1、业务层接口

package com.sw.elec.service;

import com.sw.elec.domain.ElecText;

/**
 *
 * @author admin
 * Service-业务层接口
 */
public interface IElecTextService {
    //指定实现类
    public final static String SERVICE_NAME = "com.sw.elec.service.impl.ElecTextServiceImpl";
    public void saveElecText(ElecText elecText);
}

2、业务层接口实现

package com.sw.elec.service.impl;

import javax.annotation.Resource;

import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Isolation;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;

import com.sw.elec.dao.IElecTextDao;
import com.sw.elec.domain.ElecText;
import com.sw.elec.service.IElecTextService;
/**
 *
 * @author admin
 * Service-业务层实现
 */
//指定事务提交级别(类级别-只读)
@Transactional(readOnly=true)
//指定实现类
@Service(IElecTextService.SERVICE_NAME)
public class ElecTextServiceImpl implements IElecTextService {

    //采用注解的方式调用dao层的方法实现
    @Resource(name=IElecTextDao.SERVICE_NAME)
    private IElecTextDao elecTextDao;
    
    @Override
    //事务提交级别
    @Transactional(isolation=Isolation.DEFAULT,propagation=Propagation.REQUIRED,readOnly=false)
    public void saveElecText(ElecText elecText) {
        // TODO Auto-generated method stub
        //调用save方法进行保存操作
        elecTextDao.save(elecText);
    }  
}

3、测试-Junit

package com.sw.junit;

import static org.junit.Assert.*;

import java.util.Date;

import org.junit.Before;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.sw.elec.domain.ElecText;
import com.sw.elec.service.IElecTextService;

public class TextService {

    @Before
    public void setUp() throws Exception {
    }

    @Test
    public void test() {
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        IElecTextService elecTextService = (IElecTextService)context.getBean(IElecTextService.SERVICE_NAME);
        //实例化PO对象
        ElecText elecText = new ElecText();
        elecText.setTextName("测试Service");
        elecText.setTextDate(new Date());
        elecText.setTextRemark("测试Service简介");
        
        elecTextService.saveElecText(elecText);
    }

}

(四)控制层搭建

1、编写Form

package com.sw.elec.web.form;

import java.util.Date;

/**
 *
 * @author swxc
 * VO对象,对应页面表单的属性值
 * VO对象与PO对象的关系:
 * 相同点:都是javabean对象
 * 不同点:PO对象中的属性对应数据库表的字段
 *         VO对象中的属性可以改变,对应的是页面表单属性
 */
@SuppressWarnings("serial")
public class ElecTextForm implements java.io.Serializable{
    private String textID;
    private String textName;
    private String textDate;
    private String textRemark;
    
    public String getTextID() {
        return textID;
    }
    public void setTextID(String textID) {
        this.textID = textID;
    }
    public String getTextName() {
        return textName;
    }
    public void setTextName(String textName) {
        this.textName = textName;
    }
    public String getTextDate() {
        return textDate;
    }
    public void setTextDate(String textDate) {
        this.textDate = textDate;
    }
    public String getTextRemark() {
        return textRemark;
    }
    public void setTextRemark(String textRemark) {
        this.textRemark = textRemark;
    }
    
}

2、编写Action文件

(1)编写servletRequest与servletResponse封装Action

package com.sw.elec.web.action;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;

import com.opensymphony.xwork2.ActionSupport;

@SuppressWarnings("serial")
public class BaseAction extends ActionSupport implements ServletRequestAware,ServletResponseAware {
    /**
     * 封装request与response
     */
    
    protected HttpServletRequest request = null;
    protected HttpServletResponse response = null;

    @Override
    public void setServletResponse(HttpServletResponse response) {
        // TODO Auto-generated method stub
        this.response = response;
    }

    @Override
    public void setServletRequest(HttpServletRequest request) {
        // TODO Auto-generated method stub
        this.request = request;
    }
    
}

(2)项目Action(对应操作jsp页面)

<pre name="code" class="java">package com.sw.elec.web.action;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts2.interceptor.ServletRequestAware;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import com.sun.xml.internal.ws.message.StringHeader;
import com.sw.elec.container.ServiceProvider;
import com.sw.elec.domain.ElecText;
import com.sw.elec.service.IElecTextService;
import com.sw.elec.util.StringHelper;
import com.sw.elec.web.form.ElecTextForm;

@SuppressWarnings("serial")
public class ElecTextAction extends BaseAction implements ModelDriven<ElecTextForm>{
    
    private ElecTextForm elecTextForm = new ElecTextForm();
    //加载beans.xml
    private IElecTextService iElecTextService = (IElecTextService)ServiceProvider.getService(IElecTextService.SERVICE_NAME);
    @Override
    public ElecTextForm getModel() {
        // TODO Auto-generated method stub
        return elecTextForm;
    }
    public String save(){
//        System.out.println(elecTextForm.getTextName());
//        System.out.println(request.getParameter("textName"));
        //将VO对象转化为PO对象
        //实例化PO对象
        ElecText elecText = new ElecText();
        elecText.setTextName(elecTextForm.getTextName());
        elecText.setTextDate(StringHelper.stringConvertDate(elecTextForm.getTextDate()));
        elecText.setTextRemark(elecTextForm.getTextRemark());
        
        //使用spring调用service层处理
//        ApplicationContext aContext = new ClassPathXmlApplicationContext("beans.xml");
//        IElecTextService iElecTextService = (IElecTextService)aContext.getBean(IElecTextService.SERVICE_NAME);
        //使用Spring容器处理beans.xml的加载,减少资源的消耗
//        IElecTextService iElecTextService = (IElecTextService)ServiceProvider.getService(IElecTextService.SERVICE_NAME);
        //调用方法保存
        iElecTextService.saveElecText(elecText);
        return "save";
    }
}

 
 

3、编写struts.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
    "http://struts.apache.org/dtds/struts-2.1.7.dtd">
<struts>
    <!-- 配置action的访问路径为.do的形式,存在于default.properties文件中 -->
    <constant name="struts.action.extension" value="do"></constant>
    <!-- 配置struts的开发模式 -->
    <constant name="struts.devMode" value="true"></constant>
    <!-- 配置页面显示简单模式 -->
    <constant name="struts.ui.theme" value="simple"></constant>
    
    <package name="system" namespace="/system" extends="struts-default">
        <action name="elecTextAction_*" class="com.sw.elec.web.action.ElecTextAction" method="{1}">
            <result name="save">
                /system/textAdd.jsp
            </result>
        </action>
    </package>
</struts>

4、编写界面文件

(1)jsp文件(textAdd.jsp)

<%@ page language="java" pageEncoding="UTF-8"%>
   <script type="text/javascript" language="JavaScript" src="${pageContext.request.contextPath }/script/calendar.js" charset="gb2312"></script>
<html>
<head>
<title>Swxctx</title>
<link href="${pageContext.request.contextPath }/css/Style.css" type="text/css" rel="stylesheet">

  <script language="javascript">
   function checkchar(){
  document.Form1.action="system/elecTextAction_save.do";
  document.Form1.submit();
  //alert(" 保存成功!");
  }
  function addEnter(element){
   document.getElementById(element).value = document.getElementById(element).value+"<br>";
   
  }
  </script>


</head>

<body>
<form name="Form1" id="Form1" method=post>

    <table cellspacing="1" cellpadding="5" width="90%" align="center" bgcolor="#f5fafe" style="border:1px solid #8ba7e3" border="0">

        <tr>
            <td class="ta_01" colspan=2 align="center" background="${pageContext.request.contextPath }/images/b-info.gif">
            <font face="宋体" size="2"><strong>Swxctx-Text</strong></font>
            </td>
        </tr>
        <TR height=10><td></td><td></td></TR>
        
        <tr>
            <td class="ta_01" align="center" bgcolor="#f5fafe" width="15%">测试名称:</td>
            <td class="ta_01" bgcolor="#ffffff" style="word-break: break-all">
    
            <textarea name="textName" id="textName"   style="width: 500px; height: 160px; padding: 1;FONT-FAMILY: 宋体; FONT-SIZE: 9pt" onkeydown="if(event.keyCode==13)addEnter('textName');"></textarea>
            </td>
            
        </tr>
        <tr>
            <td class="ta_01" align="center" bgcolor="#f5fafe" width="15%">测试日期:</td>
            <td class="ta_01" bgcolor="#ffffff" style="word-break: break-all">
    
            <input name="textDate" type="text" maxlength="50" size=20 onclick="JavaScript:calendar(document.Form1.textDate)">
            </td>
            
        </tr>
        <tr>
            <td class="ta_01" align="center" bgcolor="#f5fafe" width="15%">测试备注:</td>
            <td class="ta_01" bgcolor="#ffffff" style="word-break: break-all">
            <textarea name="textRemark" id="textRemark"  style="width: 500px; height: 160px; padding: 1;FONT-FAMILY: 宋体; FONT-SIZE: 9pt" onkeydown="if(event.keyCode==13)addEnter('textRemark');"></textarea>
            </td>
            
        </tr>
        <tr>
            <td class="ta_01" style="width: 100%" align="center" bgcolor="#f5fafe" colspan="2">
            <input type="button" name="BT_Submit" value="保存" onclick="checkchar()" id="BT_Submit" style="font-size:12px; color:black; height=20;width=50">
            </td>
        </tr>
    </table>
     
</form>

</body>
</html>

(2)javascript文件(calendar.jsp)-并不是主要的

<!--
document.write("<div id=meizzCalendarLayer style='position: absolute; z-index: 9999; width: 144; height: 193; display: none'>");
document.write("<iframe name=meizzCalendarIframe scrolling=no frameborder=0 width=100% height=100%></iframe></div>");
function writeIframe()
{
    var strIframe = "<html><head><meta http-equiv='Content-Type' content='text/html; charset=gb2312'><style>"+
    "*{font-size: 12px; font-family: 宋体}"+
    ".bg{  color: "+ WebCalendar.lightColor +"; cursor: default; background-color: "+ WebCalendar.darkColor +";}"+
    "table#tableMain{ width: 142; height: 180;}"+
    "table#tableWeek td{ color: "+ WebCalendar.lightColor +";}"+
    "table#tableDay  td{ font-weight: bold;}"+
    "td#meizzYearHead, td#meizzYearMonth{color: "+ WebCalendar.wordColor +"}"+
    ".out { text-align: center; border-top: 1px solid "+ WebCalendar.DarkBorder +"; border-left: 1px solid "+ WebCalendar.DarkBorder +";"+
    "border-right: 1px solid "+ WebCalendar.lightColor +"; border-bottom: 1px solid "+ WebCalendar.lightColor +";}"+
    ".over{ text-align: center; border-top: 1px solid #FFFFFF; border-left: 1px solid #FFFFFF;"+
    "border-bottom: 1px solid "+ WebCalendar.DarkBorder +"; border-right: 1px solid "+ WebCalendar.DarkBorder +"}"+
    "input{ border: 1px solid "+ WebCalendar.darkColor +"; padding-top: 1px; height: 18; cursor: hand;"+
    "       color:"+ WebCalendar.wordColor +"; background-color: "+ WebCalendar.btnBgColor +"}"+
    "</style></head><body onselectstart='return false' style='margin: 0px' oncontextmenu='return false'><form name=meizz>";

    if (WebCalendar.drag){ strIframe += "<scr"+"ipt language=javascript>"+
    "var drag=false, cx=0, cy=0, o = parent.WebCalendar.calendar; function document.onmousemove(){"+
    "if(parent.WebCalendar.drag && drag){if(o.style.left=='')o.style.left=0; if(o.style.top=='')o.style.top=0;"+
    "o.style.left = parseInt(o.style.left) + window.event.clientX-cx;"+
    "o.style.top  = parseInt(o.style.top)  + window.event.clientY-cy;}}"+
    "function document.onkeydown(){ switch(window.event.keyCode){  case 27 : parent.hiddenCalendar(); break;"+
    "case 37 : parent.prevM(); break; case 38 : parent.prevY(); break; case 39 : parent.nextM(); break; case 40 : parent.nextY(); break;"+
    "case 84 : document.forms[0].today.click(); break;} window.event.keyCode = 0; window.event.returnValue= false;}"+
    "function dragStart(){cx=window.event.clientX; cy=window.event.clientY; drag=true;}</scr"+"ipt>"}

    strIframe += "<select name=tmpYearSelect  onblur='parent.hiddenSelect(this)' style='z-index:1;position:absolute;top:3;left:18;display:none'"+
    " onchange='parent.WebCalendar.thisYear =this.value; parent.hiddenSelect(this); parent.writeCalendar();'></select>"+
    "<select name=tmpMonthSelect onblur='parent.hiddenSelect(this)' style='z-index:1; position:absolute;top:3;left:74;display:none'"+
    " onchange='parent.WebCalendar.thisMonth=this.value; parent.hiddenSelect(this); parent.writeCalendar();'></select>"+

    "<table id=tableMain class=bg border=0 cellspacing=2 cellpadding=0>"+
    "<tr><td width=140 height=19 bgcolor='"+ WebCalendar.lightColor +"'>"+
    "    <table width=140 id=tableHead border=0 cellspacing=1 cellpadding=0><tr align=center>"+
    "    <td width=15 height=19 class=bg title='向前翻 1 月
快捷键:←' style='cursor: hand' onclick='parent.prevM()'><b><</b></td>"+
    "    <td width=60 id=meizzYearHead  title='点击此处选择年份' onclick='parent.funYearSelect(parseInt(this.innerText, 10))'"+
    "        onmouseover='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+
    "        onmouseout='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'></td>"+
    "    <td width=50 id=meizzYearMonth title='点击此处选择月份' onclick='parent.funMonthSelect(parseInt(this.innerText, 10))'"+
    "        onmouseover='this.bgColor=parent.WebCalendar.darkColor; this.style.color=parent.WebCalendar.lightColor'"+
    "        onmouseout='this.bgColor=parent.WebCalendar.lightColor; this.style.color=parent.WebCalendar.wordColor'></td>"+
    "    <td width=15 class=bg title='向后翻 1 月
快捷键:→' onclick='parent.nextM()' style='cursor: hand'><b>></b></td></tr></table>"+
    "</td></tr><tr><td height=20><table id=tableWeek border=1 width=140 cellpadding=0 cellspacing=0 ";
    if(WebCalendar.drag){strIframe += "onmousedown='dragStart()' onmouseup='drag=false' onmouseout='drag=false'";}
    strIframe += " borderColorLight='"+ WebCalendar.darkColor +"' borderColorDark='"+ WebCalendar.lightColor +"'>"+
    "    <tr align=center><td height=20>日</td><td>一</td><td>二</td><td>三</td><td>四</td><td>五</td><td>六</td></tr></table>"+
    "</td></tr><tr><td valign=top width=140 bgcolor='"+ WebCalendar.lightColor +"'>"+
    "    <table id=tableDay height=120 width=140 border=0 cellspacing=1 cellpadding=0>";
         for(var x=0; x<5; x++){ strIframe += "<tr>";
         for(var y=0; y<7; y++)  strIframe += "<td class=out id='meizzDay"+ (x*7+y) +"'></td>"; strIframe += "</tr>";}
         strIframe += "<tr>";
         for(var x=35; x<39; x++) strIframe += "<td class=out id='meizzDay"+ x +"'></td>";
         strIframe +="<td colspan=3 class=out title='"+ WebCalendar.regInfo +"'><input style=' background-color: "+
         WebCalendar.btnBgColor +";cursor: hand; padding-top: 4px; width: 100%; height: 100%; border: 0' onfocus='this.blur()'"+
         " type=button value='    关闭' onclick='parent.hiddenCalendar()'></td></tr></table>"+
    "</td></tr><tr><td height=20 width=140 bgcolor='"+ WebCalendar.lightColor +"'>"+
    "    <table border=0 cellpadding=1 cellspacing=0 width=140>"+
    "    <tr><td><input name=prevYear title='向前翻 1 年
快捷键:↑' onclick='parent.prevY()' type=button value='<<'"+
    "    onfocus='this.blur()' style='meizz:expression(this.disabled=parent.WebCalendar.thisYear==1000)'><input"+
    "    onfocus='this.blur()' name=prevMonth title='向前翻 1 月
快捷键:←' onclick='parent.prevM()' type=button value='< '>"+
    "    </td><td align=center><input name=today type=button value='Today' onfocus='this.blur()' style='width: 50' title='当前日期
快捷键:T'"+
    "    onclick=\"parent.returnDate(new Date().getDate() +'/'+ (new Date().getMonth() +1) +'/'+ new Date().getFullYear())\">"+
    "    </td><td align=right><input title='向后翻 1 月
快捷键:→' name=nextMonth onclick='parent.nextM()' type=button value=' >'"+
    "    onfocus='this.blur()'><input name=nextYear title='向后翻 1 年
快捷键:↓' onclick='parent.nextY()' type=button value='>>'"+
    "    onfocus='this.blur()' style='meizz:expression(this.disabled=parent.WebCalendar.thisYear==9999)'></td></tr></table>"+
    "</td></tr><table></form></body></html>";
    with(WebCalendar.iframe)
    {
        document.writeln(strIframe); document.close();
        for(var i=0; i<39; i++)
        {
            WebCalendar.dayObj[i] = eval("meizzDay"+ i);
            WebCalendar.dayObj[i].onmouseover = dayMouseOver;
            WebCalendar.dayObj[i].onmouseout  = dayMouseOut;
            WebCalendar.dayObj[i].onclick     = returnDate;
        }
    }
}
function WebCalendar() //初始化日历的设置
{
    this.daysMonth  = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
    this.day        = new Array(39);            //定义日历展示用的数组
    this.dayObj     = new Array(39);            //定义日期展示控件数组
    this.dateStyle  = null;                     //保存格式化后日期数组
    this.objExport  = null;                     //日历回传的显示控件

    this.eventSrc   = null;                     //日历显示的触发控件

    this.inputDate  = null;                     //转化外的输入的日期(d/m/yyyy)
    this.thisYear   = new Date().getFullYear(); //定义年的变量的初始值

    this.thisMonth  = new Date().getMonth()+ 1; //定义月的变量的初始值

    this.thisDay    = new Date().getDate();     //定义日的变量的初始值

    this.today      = this.thisDay +"/"+ this.thisMonth +"/"+ this.thisYear;   //今天(d/m/yyyy)
    this.iframe     = window.frames("meizzCalendarIframe"); //日历的 iframe 载体
    this.calendar   = getObjectById("meizzCalendarLayer");  //日历的层
    this.dateReg    = "";           //日历格式验证的正则式

    this.yearFall   = 50;           //定义年下拉框的年差值

    this.format     = "yyyy-mm-dd"; //回传日期的格式

    this.timeShow   = false;        //是否返回时间
    this.drag       = true;         //是否允许拖动
    this.darkColor  = "#026CC6";    //控件的暗色

    this.lightColor = "#FFFFFF";    //控件的亮色

    this.btnBgColor = "#C0EBFB";    //控件的按钮背景色
    this.wordColor  = "#000040";    //控件的文字颜色

    this.wordDark   = "#DCDCDC";    //控件的暗文字颜色
    this.dayBgColor = "#E5F5FB";    //日期数字背景色

    this.todayColor = "#5353F9";    //今天在日历上的标示背景色
    this.DarkBorder = "#FFE4C4";    //日期显示的立体表达色
}   var WebCalendar = new WebCalendar();

function calendar() //主调函数
{
    var e = window.event.srcElement;   writeIframe();
    var o = WebCalendar.calendar.style; WebCalendar.eventSrc = e;
    if (arguments.length == 0) WebCalendar.objExport = e;
    else WebCalendar.objExport = eval(arguments[0]);

    WebCalendar.iframe.tableWeek.style.cursor = WebCalendar.drag ? "move" : "default";
    var t = e.offsetTop,  h = e.clientHeight, l = e.offsetLeft, p = e.type;
    while (e = e.offsetParent){t += e.offsetTop; l += e.offsetLeft;}
    o.display = ""; WebCalendar.iframe.document.body.focus();
    var cw = WebCalendar.calendar.clientWidth, ch = WebCalendar.calendar.clientHeight;
    var dw = document.body.clientWidth, dl = document.body.scrollLeft, dt = document.body.scrollTop;
    
    if (document.body.clientHeight + dt - t - h >= ch) o.top = (p=="image")? t + h : t + h + 6;
    else o.top  = (t - dt < ch) ? ((p=="image")? t + h : t + h + 6) : t - ch;
    if (dw + dl - l >= cw) o.left = l; else o.left = (dw >= cw) ? dw - cw + dl : dl;

    if  (!WebCalendar.timeShow) WebCalendar.dateReg = /^(\d{1,4})(-|\/|.)(\d{1,2})\2(\d{1,2})$/;
    else WebCalendar.dateReg = /^(\d{1,4})(-|\/|.)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/;

    try{
        if (WebCalendar.objExport.value.trim() != ""){
            WebCalendar.dateStyle = WebCalendar.objExport.value.trim().match(WebCalendar.dateReg);
            if (WebCalendar.dateStyle == null)
            {
                WebCalendar.thisYear   = new Date().getFullYear();
                WebCalendar.thisMonth  = new Date().getMonth()+ 1;
                WebCalendar.thisDay    = new Date().getDate();
                alert("原文本框里的日期格式有错误!");
                writeCalendar(); return false;
            }
            else
            {
                WebCalendar.thisYear   = parseInt(WebCalendar.dateStyle[1], 10);
                WebCalendar.thisMonth  = parseInt(WebCalendar.dateStyle[3], 10);
                WebCalendar.thisDay    = parseInt(WebCalendar.dateStyle[4], 10);
                WebCalendar.inputDate  = parseInt(WebCalendar.thisDay, 10) +"/"+ parseInt(WebCalendar.thisMonth, 10) +"/"+
                parseInt(WebCalendar.thisYear, 10); writeCalendar();
            }
        }  else writeCalendar();
    }  catch(e){writeCalendar();}
}
function funMonthSelect() //月份的下拉框
{
    var m = isNaN(parseInt(WebCalendar.thisMonth, 10)) ? new Date().getMonth() + 1 : parseInt(WebCalendar.thisMonth);
    var e = WebCalendar.iframe.document.forms[0].tmpMonthSelect;
    for (var i=1; i<13; i++) e.options.add(new Option(i +"月", i));
    e.style.display = ""; e.value = m; e.focus(); window.status = e.style.top;
}
function funYearSelect() //年份的下拉框
{
    var n = WebCalendar.yearFall;
    var e = WebCalendar.iframe.document.forms[0].tmpYearSelect;
    var y = isNaN(parseInt(WebCalendar.thisYear, 10)) ? new Date().getFullYear() : parseInt(WebCalendar.thisYear);
        y = (y <= 1000)? 1000 : ((y >= 9999)? 9999 : y);
    var min = (y - n >= 1000) ? y - n : 1000;
    var max = (y + n <= 9999) ? y + n : 9999;
        min = (max == 9999) ? max-n*2 : min;
        max = (min == 1000) ? min+n*2 : max;
    for (var i=min; i<=max; i++) e.options.add(new Option(i +"年", i));
    e.style.display = ""; e.value = y; e.focus();
}
function prevM()  //往前翻月份
{
    WebCalendar.thisDay = 1;
    if (WebCalendar.thisMonth==1)
    {
        WebCalendar.thisYear--;
        WebCalendar.thisMonth=13;
    }
    WebCalendar.thisMonth--; writeCalendar();
}
function nextM()  //往后翻月份
{
    WebCalendar.thisDay = 1;
    if (WebCalendar.thisMonth==12)
    {
        WebCalendar.thisYear++;
        WebCalendar.thisMonth=0;
    }
    WebCalendar.thisMonth++; writeCalendar();
}
function prevY(){WebCalendar.thisDay = 1; WebCalendar.thisYear--; writeCalendar();}//往前翻 Year
function nextY(){WebCalendar.thisDay = 1; WebCalendar.thisYear++; writeCalendar();}//往后翻 Year
function hiddenSelect(e){for(var i=e.options.length; i>-1; i--)e.options.remove(i); e.style.display="none";}
function getObjectById(id){ if(document.all) return(eval("document.all."+ id)); return(eval(id)); }
function hiddenCalendar(){getObjectById("meizzCalendarLayer").style.display = "none";};
function appendZero(n){return(("00"+ n).substr(("00"+ n).length-2));}//日期自动补零程序
function trim(){return this.replace(/(^\s*)|(\s*$)/g,"");}
function dayMouseOver()
{
    this.className = "over";
    this.style.backgroundColor = WebCalendar.darkColor;
    if(WebCalendar.day[this.id.substr(8)].split("/")[1] == WebCalendar.thisMonth)
    this.style.color = WebCalendar.lightColor;
}
function dayMouseOut()
{
    this.className = "out"; var d = WebCalendar.day[this.id.substr(8)], a = d.split("/");
    this.style.removeAttribute('backgroundColor');
    if(a[1] == WebCalendar.thisMonth && d != WebCalendar.today)
    {
        if(WebCalendar.dateStyle && a[0] == parseInt(WebCalendar.dateStyle[4], 10))
        this.style.color = WebCalendar.lightColor;
        this.style.color = WebCalendar.wordColor;
    }
}
function writeCalendar() //对日历显示的数据的处理程序

{
    var y = WebCalendar.thisYear;
    var m = WebCalendar.thisMonth;
    var d = WebCalendar.thisDay;
    WebCalendar.daysMonth[1] = (0==y%4 && (y%100!=0 || y%400==0)) ? 29 : 28;
    if (!(y<=9999 && y >= 1000 && parseInt(m, 10)>0 && parseInt(m, 10)<13 && parseInt(d, 10)>0)){
        alert("对不起,你输入了错误的日期!");
        WebCalendar.thisYear   = new Date().getFullYear();
        WebCalendar.thisMonth  = new Date().getMonth()+ 1;
        WebCalendar.thisDay    = new Date().getDate(); }
    y = WebCalendar.thisYear;
    m = WebCalendar.thisMonth;
    d = WebCalendar.thisDay;
    WebCalendar.iframe.meizzYearHead.innerText  = y +" 年";
    WebCalendar.iframe.meizzYearMonth.innerText = parseInt(m, 10) +" 月";
    WebCalendar.daysMonth[1] = (0==y%4 && (y%100!=0 || y%400==0)) ? 29 : 28; //闰年二月为29天

    var w = new Date(y, m-1, 1).getDay();
    var prevDays = m==1  ? WebCalendar.daysMonth[11] : WebCalendar.daysMonth[m-2];
    for(var i=(w-1); i>=0; i--) //这三个 for 循环为日历赋数据源(数组 WebCalendar.day)格式是 d/m/yyyy
    {
        WebCalendar.day[i] = prevDays +"/"+ (parseInt(m, 10)-1) +"/"+ y;
        if(m==1) WebCalendar.day[i] = prevDays +"/"+ 12 +"/"+ (parseInt(y, 10)-1);
        prevDays--;
    }
    for(var i=1; i<=WebCalendar.daysMonth[m-1]; i++) WebCalendar.day[i+w-1] = i +"/"+ m +"/"+ y;
    for(var i=1; i<39-w-WebCalendar.daysMonth[m-1]+1; i++)
    {
        WebCalendar.day[WebCalendar.daysMonth[m-1]+w-1+i] = i +"/"+ (parseInt(m, 10)+1) +"/"+ y;
        if(m==12) WebCalendar.day[WebCalendar.daysMonth[m-1]+w-1+i] = i +"/"+ 1 +"/"+ (parseInt(y, 10)+1);
    }
    for(var i=0; i<39; i++)    //这个循环是根据源数组写到日历里显示

    {
        var a = WebCalendar.day[i].split("/");
        WebCalendar.dayObj[i].innerText    = a[0];
        WebCalendar.dayObj[i].title        = a[2] +"-"+ appendZero(a[1]) +"-"+ appendZero(a[0]);
        WebCalendar.dayObj[i].bgColor      = WebCalendar.dayBgColor;
        WebCalendar.dayObj[i].style.color  = WebCalendar.wordColor;
        if ((i<10 && parseInt(WebCalendar.day[i], 10)>20) || (i>27 && parseInt(WebCalendar.day[i], 10)<12))
            WebCalendar.dayObj[i].style.color = WebCalendar.wordDark;
        if (WebCalendar.inputDate==WebCalendar.day[i])    //设置输入框里的日期在日历上的颜色
        {WebCalendar.dayObj[i].bgColor = WebCalendar.darkColor; WebCalendar.dayObj[i].style.color = WebCalendar.lightColor;}
        if (WebCalendar.day[i] == WebCalendar.today)      //设置今天在日历上反应出来的颜色

        {WebCalendar.dayObj[i].bgColor = WebCalendar.todayColor; WebCalendar.dayObj[i].style.color = WebCalendar.lightColor;}
    }
}
function returnDate() //根据日期格式等返回用户选定的日期

{
    if(WebCalendar.objExport)
    {
        var returnValue;
        var a = (arguments.length==0) ? WebCalendar.day[this.id.substr(8)].split("/") : arguments[0].split("/");
        var d = WebCalendar.format.match(/^(\w{4})(-|\/|.|)(\w{1,2})\2(\w{1,2})$/);
        if(d==null){alert("你设定的日期输出格式不对!\r\n\r\n请重新定义 WebCalendar.format !"); return false;}
        var flag = d[3].length==2 || d[4].length==2; //判断返回的日期格式是否要补零
        returnValue = flag ? a[2] +d[2]+ appendZero(a[1]) +d[2]+ appendZero(a[0]) : a[2] +d[2]+ a[1] +d[2]+ a[0];
        if(WebCalendar.timeShow)
        {
            var h = new Date().getHours(), m = new Date().getMinutes(), s = new Date().getSeconds();
            returnValue += flag ? " "+ appendZero(h) +":"+ appendZero(m) +":"+ appendZero(s) : " "+  h  +":"+ m +":"+ s;
        }
        WebCalendar.objExport.value = returnValue;
        hiddenCalendar();
    }
}
function onclick()
{
    if(WebCalendar.eventSrc != window.event.srcElement) hiddenCalendar();
}
//-->

(3)Css文件(Style.css)-界面渲染

body {
    background-color: #FFFFFF;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
td,select  {
    font-size: 12px;
}
A.cl:link {
    font-size:12px;
    color: #000000;
    text-decoration:none;
}
A.cl:visited {
    font-size:12px;
    color: #000000;
    text-decoration:none;
}
A.cl:hover {
    font-size:12px;
    color: #cc0000;
    text-decoration:underline;
}
A.cl_01:link {
    font-size:12px;
    color: #000066;
    text-decoration:none;
}
A.cl_01:visited {
    font-size:12px;
    color: #000066;
    text-decoration:none;
}
A.cl_01:hover {
    font-size:12px;
    color: #0066CC;
    text-decoration:underline;
}
.bt_01 {
    line-height: 155%;
    color: #FFFFFF;
    padding-left: 15px;
    padding-bottom: 10px;
}

.box04 {
    font-size: 12px;
    padding-top: 7px;
    padding-left: 16px;
    background-color: #88A5DF;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #7798DC;
    border-right-color: #2C416B;
    border-bottom-color: #2C416B;
    border-left-color: #7798DC;
    padding-bottom: 4px;
}
.box01 {
    font-size: 12px;
    color: #000000;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #EDF8FF;
    border-right-color: #8099B2;
    border-bottom-color: #8099B2;
    border-left-color: #EDF8FF;
    background-color: #B2CFED;
    padding-top: 7px;
    padding-left: 16px;
    border-top-style: solid;
    padding-bottom: 4px;
}
.box05 {
    font-size: 12px;
    padding-top: 5px;
    padding-left: 30px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #B2CFED;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #F4F9FF;
    padding-bottom: 3px;
    background-color: #EDF8FF;
}
.box06 {
    font-size: 12px;
    background-color: #EDF6FF;
    padding-top: 5px;
    padding-left: 30px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ADAEAD;
    padding-bottom: 3px;

}
.bottom {
    color: #000066;
}
A.cl_02:link {
    font-size:12px;
    color: #CC0000;
    text-decoration:underline;
}
A.cl_02:visited {
    font-size:12px;
    color: #CC0000;
    text-decoration:underline;
}
A.cl_02:hover {
    font-size:12px;
    color: #CC0000;
    text-decoration:none;
}
.top {
    padding-top: 4px;
    padding-bottom: 2px;
    font-weight: bold;
    background-color: #AFD1F3;
    border-top-width: 1px;
    border-right-width: 1px;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #E3EFFB;
    border-right-color: #7990A8;
    border-bottom-color: #7990A8;
    border-left-color: #E3EFFB;
}
.ta_01 {
    padding-top: 4px;
    padding-bottom: 2px;
    padding-right: 2px;
    padding-left: 3px;
    line-height: 135%;
}

A:link {
    font-size:12px;
    color: #000000;
    text-decoration:none;
}
A:visited {
    font-size:12px;
    color: #000000;
    text-decoration:none;
}
A:hover {
    font-size:12px;
    color: #0066FF;
    text-decoration:underline;
}
.bg {
    border-top:0px ;
    border-left:0px ;
    border-right:0px ;
    border-bottom: solid 1px gray;
    background-color: #FBFDFF;
    height:21px ;
    width:150px;
}
.button {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 0px 2px 0px 2px;
    border: 1px solid #8AA2CC;
    color: #333333;
    cursor: hand;
    /*
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    */
    height: 18px;
}
.button_ok {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_ok.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_cancel {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_cancel.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_help {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_help.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_exit {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_search.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
    .button_search {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_exit.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_view {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_view.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_add {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_add.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_del {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_del.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_print {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_print.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_modi {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_modi.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_save {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_save.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_alert {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_alert.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_clock {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_clock.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_close {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_close.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_phone01 {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/button_phone01.gif);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.button_dire {
    background-color: #DAE6FF;
    margin: 1px;
    padding: 2px 4px 2px 10px;
    border: 1px solid #8AA2CC;
    background-attachment: fixed;
    background-image: url(../images/hotel_dire_arrowc.jpg);
    background-repeat: no-repeat;
    background-position: left center;
    color: #2F3F5B;
    cursor: hand;
    text-align: right;
    left: 10px;
    top: 10px;
    right: 0px;
    bottom: 10px;
    clip:  rect(10px 10px 10px 10px);
    height: 20px;
}
.NextLine
{
    word-break:break-all;word-wrap:break-word;
}
.test
{
    BACKGROUND-IMAGE: url(../images/aaa.gif); HEIGHT: 25px;
    
}
.optionOff
{
    color:#909090;
    background-image:url(../images/optionbgOff.gif);
    background-position:right;
    background-repeat:no-repeat;
    border-left:1px solid #a0a0a0;
    text-align:center;
    width:110px;
    cursor:hand;
}
.optionOn {
    color:#1E6BAE;
    background-image:url(../images/optionbgOn.gif);
    background-position:right;
    background-repeat:no-repeat;
    border-left:1px solid #808080;
    text-align:center;
    font-weight:bold;
    width:110px;
    cursor:hand;
}
.optionOff A,.optionOff A:link,.optionOff A:visited,.optionOff A:hover,.optionOff A:active {
    color:#909090;
    text-decoration:none;
}
.optionOn A,.optionOn A:link,.optionOn A:visited,.optionOn A:hover,.optionOn A:active {
    color:#1E6BAE;
    text-decoration:none;
}
.tbodyhidden {
    display:none;
}
.xscroll {
    overflow-x:auto;
    height:auto;
    SCROLLBAR-FACE-COLOR: #E0F0FC;
    SCROLLBAR-SHADOW-COLOR: #EAF5FD;
    SCROLLBAR-3DLIGHT-COLOR: #808080;
    SCROLLBAR-ARROW-COLOR: #808080;
    SCROLLBAR-DARKSHADOW-COLOR:#808080;
    buttonface: #666666;    
}
.xscrollhidden {
    overflow-x:auto;
    display:none;
    SCROLLBAR-FACE-COLOR: #E0F0FC;
    SCROLLBAR-SHADOW-COLOR: #EAF5FD;
    SCROLLBAR-3DLIGHT-COLOR: #808080;
    SCROLLBAR-ARROW-COLOR: #808080;
    SCROLLBAR-DARKSHADOW-COLOR:#808080;
    buttonface: #666666;        
}
.sep1 {
    padding:0px;
    background-color:#AFD1F3;
}
.grouptitle {
    background-color:#E0F0FC;
    color: #5580D7;
}
.bodyscroll {
    SCROLLBAR-FACE-COLOR: #f6f6f6;
    SCROLLBAR-SHADOW-COLOR: #8099B2;
    SCROLLBAR-3DLIGHT-COLOR: #8099B2;
    SCROLLBAR-ARROW-COLOR: #8099B2;
    SCROLLBAR-DARKSHADOW-COLOR:#cccccc;
    buttonface: #f6f6f6;        
}

5、自定义Spring容器(实现一次加载,避免每次访问进行加载耗费资源)

(1)加载beans.xml

package com.sw.elec.container;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author Swxctx
 * @version 创建时间:2016年10月31日 下午10:15:24
 * ServiceProvideCord.java
 * Explain:Spring容器,用于加载bean.xml,避免每次加载耗费时间与资源
 */
public class ServiceProvideCord {
    
    protected static ApplicationContext aContext;
    
    /**
      * 加载beans.xml
      * filename-放置beans.xml文件
      * @param filename
      */
    public static void load(String filename){
//        ApplicationContext aContext = new ClassPathXmlApplicationContext("beans.xml");
        aContext = new ClassPathXmlApplicationContext(filename);
        
    }
}

(2)服务类

package com.sw.elec.container;

import org.apache.commons.lang.StringUtils;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author Swxctx
 * @version 创建时间:2016年10月31日 下午11:09:50
 * @FileName:ServiceProvider.java
 * @Explain:服务类(getBeans)
 */
public class ServiceProvider {
    private static ServiceProvideCord serviceProvideCord;
    //静态方法加载配置文件
    static{
//        ApplicationContext aContext = new ClassPathXmlApplicationContext("beans.xml");
         serviceProvideCord = new ServiceProvideCord();
         serviceProvideCord.load("beans.xml");
     }
    
    public static Object getService(String serviceName){
        //服务名称为空
        if(StringUtils.isBlank(serviceName)){
            throw new RuntimeException("当前服务名称不存在");
        }
        Object object = null;
        if(serviceProvideCord.aContext.containsBean(serviceName)){
            //包含服务名称
            //获取bean
            object = serviceProvideCord.aContext.getBean(serviceName);
        }
        if(object == null){
            //服务名称错误
            throw new RuntimeException("当前服务名称【"+serviceName+"】下的服务节点不存在");
        }
        return object;
    }
}


6、web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>Electric</display-name>
  <filter>
      <filter-name>struts2</filter-name>
      <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
  </filter>
  
  <filter-mapping>
      <filter-name>struts2</filter-name>
      <url-pattern>/*</url-pattern>
  </filter-mapping>
  
  <welcome-file-list>
      <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

7、工具类(用于VO对象与PO对象的数据类型转换String-Date)

package com.sw.elec.util;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 * 
 * @author Swxctx
 * @Version 2016年10月31日下午9:41:57
 * StringHelper.java
 * Explain:用于转换String类型(VO-PO的数据类型转换)
 */
public class StringHelper {
	/**
	 * 
	 * @param textDate
	 * @return d
	 * Explain:将字符串形式(String)的日期类型转换成日期形式(Date) 
	 */
	public static Date stringConvertDate(String date) {
		// TODO Auto-generated method stub
		SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
		Date d =null;
		try {
			d = simpleDateFormat.parse(date);
		} catch (ParseException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return d;
	}

}


猜你喜欢

转载自blog.csdn.net/qq_28796345/article/details/52988972