小本

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2015年1月29日

摘要: 网上找了些资料关于MyEclipse配置Jbpm5,但都配置不是很顺利。最后墨迹了一会儿,终于在MyEclipse8.5基础上将Jbpm5.4配置成功.以下myeclipse8.5配置JBPM5.4的步骤: 1、下载jbpm-5.4.0.Final-installer-full.zip. 下载包比较... 阅读全文
posted @ 2015-01-29 14:24 小本 阅读(232) 评论(0) 推荐(0)

2014年12月22日

摘要: index.jsp error.jsp 阅读全文
posted @ 2014-12-22 15:11 小本 阅读(104) 评论(0) 推荐(0)

2014年12月11日

摘要: public class OptionalTrailingArguments { void f(int required ,String... trailing){ for(String i:trailing){ System.out.println(i); }}public static vo... 阅读全文
posted @ 2014-12-11 20:49 小本 阅读(92) 评论(0) 推荐(0)

摘要: public class Mugs { Mug mug1; Mug mug2; { mug1 = new Mug(1); mug2 = new Mug(2); } Mugs() { System.out.println("Mugs"); } Mugs(int i) { System.out.... 阅读全文
posted @ 2014-12-11 20:30 小本 阅读(134) 评论(0) 推荐(0)

摘要: public enum Spiciness{//枚举类型NOT,MILD,MEDIUM,HOT,FLAMING}public static void main(String[] args){//values 枚举集合// ordinal序列 Spiciness howHot=Spiciness.FL... 阅读全文
posted @ 2014-12-11 20:09 小本 阅读(78) 评论(0) 推荐(0)