posts - 78, comments - 34, trackbacks - 0, articles - 1
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

今日的北京气温回升,昨天是降温。天气的变暖,让大家感觉十分温暖,课上睡意连绵。汤兄弟有发现大家的状况,所以今天拿出了一点时间与大家交流学习方法或技术上的一些问题。授课进度完全在掌握之中。

未来三天的内容,学习使用JBMP解决审批流转这一大模块的需求。今日的课程内容比较简单,但在实际项目中的应用却十分重要。把WEB基础搞的差不多了,这些框架并没什么难的。更多的是应该多使用,多熟悉他们。两大重点内容:通用超强分页功能、JBPM审批流程管理。

一、通用超强分页功能

1.分页效果

wps_clip_image-26256

(图1.1

1.1中显示的分页功能是目前我见到的,功用最全的分页功能。当然也是论坛中比较常用的分页功能。我们今日就实现这个通用超级分页功能。

2.分页Bean

汤老师使用自己的讲课风格(应该也是他做项目时的编写风格),由广入微、由粗糙到细致。使用他的方法做分析比较好,这或许是通用的分析方式吧!

我们看图1.1中具有的属性:

v 页码:1/11

v 每页显示:30

v 总记录数:301

v 分页: [首页] [上一页] [下一页] [尾页] 1 2 3 4 5 6 7 8 9 10

OK,我们根据页面信息取出了分页Bean的属性,并设计分页Bean

import java.util.List;

public class PageView {

// 通过参数指定的信息

private int currentPage;// 当前页码

private int pageSzie;// 每页显示记录数量

// 通过查询数据库获取的信息,外部获取

private int recordTotal;// 总记录数

private List recordList;// 当前面记录信息列表

// 通过计算生成的信息

private int pageTotal;// 总页面数量

private int startIndex;// 起始页面索引

private int endIndex;// 结束页面索引

// 显示的页面数量

private static final int PAGE_INDEX_COUNT = 10;

// 在构造方法中生成各种需要的信息

public PageView(int currentPage, int pageSize, int recordTotal,

List recordList) {

this.currentPage = currentPage;

this.pageSzie = pageSize;

this.recordTotal = recordTotal;

this.recordList = recordList;

// 通过计算生成startIndex和endIndex

/*

* 因为显示的页面索引数量是有限的 我们不能把所以的页面索引一下子全列出来 我们需要动态显示页面索引列表

*/

this.pageTotal = (this.recordTotal + this.pageSzie - 1) / this.pageSzie;

// 如果页面总数<=显示页面索引数量

if (this.pageTotal <= PAGE_INDEX_COUNT) {

this.startIndex = 1;

this.endIndex = this.pageTotal;

} else {

// 根据当前页面索引生成,页面起始索引和结束索引。

// 区分偶数和奇数 页面索引数量

if (PAGE_INDEX_COUNT % 2 == 0) {

this.startIndex = this.currentPage - (PAGE_INDEX_COUNT / 2 - 1);

this.endIndex = this.currentPage + (PAGE_INDEX_COUNT / 2);

} else {

this.startIndex = this.currentPage - (PAGE_INDEX_COUNT / 2);

this.endIndex = this.currentPage + (PAGE_INDEX_COUNT / 2);

}

// 如果生成的起始索引小于1

if(this.startIndex < 1){

this.startIndex = 1;

this.endIndex = PAGE_INDEX_COUNT;

}

// 如果生成的结束索引大于总页面索引数量

if(this.endIndex > this.pageTotal){

this.endIndex = this.pageTotal;

this.startIndex = this.pageTotal - PAGE_INDEX_COUNT;

}

}

}

// ...getters AND setters

}

3.审批流程的DispathcAction

我们与上次课程一样,需要为审批流程编写一个DispatchAction。涉及到显示审批流程列表只有一个方法——list

/** 

 * 显示审批流程列表 

 */

public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)

throws Exception {

int pageNum = Integer.parseInt(request.getParameter("pageNum"));

// 调用ProcessDefinitionService接口的getPageView方法获取PageView对象

PageView pageView = processDefinitionService.getPageView(pageNum);

// 将PageView对象存放到request的pageView属性中

request.setAttribute("pageView", pageView);

return mapping.findForward("list"); // list.jsp

}

其中用到的“processDefinitionService.getPageView”方法:

/**

 * 获取pageView信息

 */

public PageView getPageView(int pageNum) {

// 每面显示10条记录

int pageSize = 10;

// 查询数据库

// 使用Number防止不同数据库返回的数值类型不同,而引发的异常。

int count = ((Number) this.getSession().createQuery(

"SELECT COUNT(*) FROM " + ProcessDefinition.class.getName()

+ " pd").uniqueResult()).intValue();

// 第一条记录的索引

int firstRecoderIndex = (pageNum - 1) * pageSize;

// 获取记录列表

List list = this.getSession().createQuery(

"FROM " + ProcessDefinition.class.getName() + " pd")

.setFirstResult(firstRecoderIndex).setMaxResults(pageSize)

.list();

return new PageView(pageNum, pageSize, count, list);

}

4.显示分页信息的pageView.jspf页面

多处使用到分页页面,所以我们将分页页面单独提取出来。如果有哪个页面需要显示分页信息,直接include就可以了。

<%@ page language="java" pageEncoding="utf-8" %>

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<c:if test="${pageView.totalPage gt 1 }">

<!-- 分页信息 -->

页码:${pageView.currentPage}/${pageView.totalPage}页

每页显示:${pageView.pageSize}条

总记录数:${pageView.recordCount}条

分页:

<a href="javascript:gotoPage(1)">[首页]</a> 

<c:if test="${pageView.currentPage gt 1}">

<a href="javascript:gotoPage(${pageView.currentPage - 1})">[上一页]</a> 

</c:if>

<c:if test="${pageView.currentPage lt pageView.totalPage}">

<a href="javascript:gotoPage(${pageView.currentPage + 1})">[下一页]</a> 

</c:if>

<a href="javascript:gotoPage(${pageView.totalPage})">[尾页]</a>

<!-- 显示页码 -->

<c:forEach begin="${pageView.startPageIndex}" end="${pageView.endPageIndex}" var="pageNum">

<c:if test="${pageNum eq pageView.currentPage}">

<span class="current_page">${pageNum}</span>

</c:if>

<c:if test="${pageNum ne pageView.currentPage}">

<a href="javascript:gotoPage(${pageNum})">${pageNum}</a>

</c:if>

</c:forEach>

转到:

<input type="text" id="txtPageNum" size="4" class="input_pagenum"/>

<input type="button" onclick="gotoPage(document.getElementById('txtPageNum').value)" value="Go"/>

<script type="text/javascript">

/**

* 跳转到指定的页码

*/

function gotoPage( pageNum ){

if( isNaN(pageNum) ){ // not a number

alert("请输入正确的页码");

document.getElementById('txtPageNum').focus();

return false;

}

if( pageNum < 1 || pageNum > ${pageView.totalPage} ){

alert("请输入正确的页码,范围为 1-${pageView.totalPage}");

document.getElementById('txtPageNum').focus();

return false;

}

window.location.href = getPageViewUrl( pageNum );

// getPageViewUrl为在include页面添加的javscript代码

     // 所以此页面可以适用于任何分页信息的显示例如下:

//function getPageViewUrl( pageNum ){

// return "?method=list&pageNum=" + pageNum;

//}

}

</script>

</c:if>

二、审批流转管理

审批流转就是把单位内部的各项审批电子化,如工作请求、出差申请、采购申请、请假、报销等日常工作流程。

审批流转(工作流):

1.流程与表单管理

2.执行流程

3.查询

有类似的审批请求,有两大重点:流程定义和表单模板,一个表单对应一个流程。

要求:

1.方便 定义/修改 与 管理 流程定义

2.方便 定义/修改 与 管理 表单模板

3.执行流程(让表单(数据)按指定的流程进行流转,并且记录)

4.方便查询所有的表单实例(数据) 记录(查询流转过的表单)

今日没有讲解设计与审批流转相关的模块,只是讲解将打包成zipJBPM工作流自动部署到OA项目中,并可查看显示工作流的文件信息以及删除工作流。

1.显示部署流程

/** 

 * 部署流程页面 

 */

public ActionForward deployUI(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)

throws Exception {

return mapping.findForward("deployUI"); // deployUI.jsp

}

2.部署流程

/** 

 * 部署流程 

 */

public ActionForward deploy(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response)

throws Exception {

try {

// 获取<html:file>表单提交过来的流程资源

ProcessDefinitionActionForm adaf = (ProcessDefinitionActionForm) form;

ZipInputStream zipIn = new ZipInputStream(adaf.getParResource().getInputStream());

// 创建流程定义

ProcessDefinition pd = ProcessDefinition.parseParZipInputStream(zipIn);

// 部署流程定义

this.processDefinitionService.deploy(pd);

} catch (Exception e) {

// 发生异常显示错误

ActionErrors errors = new ActionErrors();

errors.add("error", new ActionMessage("非法的文件格式!",false));

this.saveErrors(request, errors);

return mapping.findForward("deployUI");

}

return mapping.findForward("toList"); // path="/pd.do?method=list" redirect="true"

}

因为部署流程时确保一个线程使用的是同一个“JbpmContext”,并确保Jbpm事件的正确提交或回滚。所以我们还需要为JbpmContext添加一个过滤器。

3.删除流程

/**

 * 删除流程

 */

public ActionForward del(ActionMapping mapping, ActionForm form,

HttpServletRequest request, HttpServletResponse response)

throws Exception {

// 获取流程ID并删除

Long id = Long.parseLong(request.getParameter("id"));

this.processDefinitionService.delete(id);

// 需要刷新流程显示列表

String pageNum = request.getParameter("pageNum");

ActionForward af = mapping.findForward("toList");

return new ActionForward(af.getPath() + "&pageNum=" + pageNum, af.getRedirect());

}

4.查看流程中的“processdefinition.xml”文件

/**

 * 查询流程定义文件(processdefinition.xml

 */

public ActionForward showProcessFile(ActionMapping mapping,

ActionForm form, HttpServletRequest request,

HttpServletResponse response) throws Exception {

// 获取流程id

Long id = Long.parseLong(request.getParameter("id"));

// 获取流程定义

ProcessDefinition pd = this.processDefinitionService.getById(id);

// 获取文件

byte[] content = pd.getFileDefinition().getBytes(

"processdefinition.xml");

// 写出文件

response.setContentType("text/xml;charset=UTF-8");

response.getWriter().write(new String(content, "UTF-8"));

return null;

}

5.查看流程中的“processimage.jpg”文件

/**

 * 查询流程图片(processimage.jpg

 */

public ActionForward showProcessImage(ActionMapping mapping,

ActionForm form, HttpServletRequest request,

HttpServletResponse response) throws Exception {

// 获取流程id

Long id = Long.parseLong(request.getParameter("id"));

// 获取流程定义

ProcessDefinition pd = this.processDefinitionService.getById(id);

// 获取文件

byte[] content = pd.getFileDefinition().getBytes("processimage.jpg");

// 写出文件

response.setContentType("image/jpeg");

response.getOutputStream().write(content);

return null;

}

明天将学习自定义表单模板,和向流程中加入控制代码。今天的内容还需要在大脑里整理整理...

加油!


只有注册用户登录后才能发表评论。


网站导航: