文章列表
一、下载地址http://sourceforge.net/projects/jbpm/files/,找到jbpm4.3
二、下载后解压
目录说明
doc 用户手册(英文版)
examples 用户手册中用到的流程实例
install 安装脚本
install/src 源码
install/gpd eclipse插件
install/db 数据库sql脚本
install/downloads安装时下载目录
lib ...
1:
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public class DingShi implements ServletContextListener
{
private java.util.Timer timer = null;
public void contextInitialized(ServletContextEvent event)
{
timer = new java.util.Timer(true);
eve ...
1.applicationContext-hibernate.xml
<!-- 大对象处理器 -->
<bean id="lobHandler" lazy-init="true"
class="org.springframework.jdbc.support.lob.DefaultLobHandler" />
<!--Hibernate SessionFatory-->
<bean id="sessionFactory"
class="org.springfra ...
1: tr变色
onMouseOut="this.style.backgroundColor=''" onMouseOver="this.style.backgroundColor='#BFDFFF'"
2: button加个连接
<input type="button" name="fanhui" class="buttom" onClick="window.location.href='user.do?method=findDep&&tar=toadd ...
Mysql读取字段备注信息:
select *
from Information_schema.columns
where table_Name='emptest';
select
concat(table_name, '.', column_name) as 'foreign key',
concat(referenced_table_name, '.', referenced_column_name) as 'references'
from
information_schema.key_column_usage
where
...
P6Spy是一个可以用来在应用程序中拦截和修改数据操作语句的开源框架。
通过P6Spy我们可以对SQL语句进行拦截,相当于一个SQL语句的记录器,这样我们可以用它来作相关的分析,比如性能分析。
一、P6Spy的安装与使用
1、从 http:// ...
1、PowerDesigner 使用MySQL的auto_increment
问题:
PD怎样能使主键id使用MySQL的auto_increment呢?
解决方法:
打开table properties窗口 → columns → 选中id列 → 打开columns properties窗口 → 勾选identity即可
注意:概念模型没有此选项,物理模型才有
2、PowerDesigner 去掉SQL脚本中的双引号
问题:
PD生成Oracle数据库建表SQL时,默认会给表名和字段名加上双引号,怎样能去掉SQL脚本中的双引号呢?
解决方法 ...
1、错误 :javax.servlet.ServletException: DispatchMapping[0] does not define a handler property
原因: action参数配置不全
解决方法:在 config文件中 添加 parameter="method"等
2、错误:Exception creating bean of class xxxForm
解决方法:更改包路径
3、错误Cannot forward after response has been committed转发
解决方 ...