lyyb2001

          只是為方便自己找記錄而已
          posts - 57, comments - 27, trackbacks - 0, articles - 5
            BlogJava :: 首頁 :: 新隨筆 :: 聯系 ::  :: 管理

          2016年12月8日

          表單里面先對某一個控件有效性驗證(如手機號碼,當手機號碼輸入正確,才發送驗證碼,最后才是對表單驗證)

          <input type="text" id="mobile" name="mobile" placeholder="請輸入您的手機號碼" class="easyui-validatebox form-control" data-options="required:true,validType:'mobile'" />

          validateType自己擴展規則

          對單個輸入框的驗證為:$("#mobile").validatebox('isValid') 通過返回true

          posted @ 2017-09-19 15:59 skycity 閱讀(840) | 評論 (0)編輯 收藏

              public enum Section {
          KITTING(1),
          LABELKITTING(2),
          PACKING(3);

          private final int code;

          private Section(int code)
          {
          this.code=code;
          }
          public int getCode()
          {
          return this.code;
          }
          }

          Map<Integer,Section> MAP=Arrays.stream(Section.values()).collect(Collectors.toMap(s->s.code, section->section));

          posted @ 2017-07-11 11:40 skycity 閱讀(2767) | 評論 (0)編輯 收藏

          Optional<MaterialPaneModel> maxMaterial = list.stream().max(Comparator.comparingInt(MaterialPaneModel::getMaterialQty));

          posted @ 2017-07-06 15:43 skycity 閱讀(4021) | 評論 (0)編輯 收藏

          try{

          JaxWsProxyFactoryBean factoryBean = new JaxWsProxyFactoryBean();

          factoryBean.getInInterceptors().add(new LoggingInInterceptor());

          factoryBean.getOutInterceptors().add(new LoggingOutInterceptor());

          factoryBean.setServiceClass(AutoPackServiceIntf.class);

          factoryBean.setAddress("http://10.241.0.105:17000/TEST");

          AutoPackServiceIntf factory = (AutoPackServiceIntf) factoryBean.create();

          Client client = ClientProxy.getClient(factory);

          HTTPConduit conduit = (HTTPConduit) client.getConduit();

          HTTPClientPolicy policy = new HTTPClientPolicy();

          policy.setConnectionTimeout(30000); //連接超時時間

          policy.setReceiveTimeout(120000); //請求超時時間.

          conduit.setClient(policy);

          System.out.println(factory.getFirstUnitCramp("1"));

          }catch(WebServiceException ex){

          long l2 = System.currentTimeMillis();

          System.out.println((l2-l1)+"ms");

          System.out.println("連接異常");

          }

          posted @ 2016-12-08 14:19 skycity 閱讀(297) | 評論 (0)編輯 收藏

          主站蜘蛛池模板: 康平县| 永平县| 海城市| 灵璧县| 和田市| 丹东市| 齐齐哈尔市| 剑河县| 庆阳市| 汉源县| 屏南县| 蛟河市| 正蓝旗| 水富县| 册亨县| 浦江县| 阿尔山市| 墨竹工卡县| 广州市| 和林格尔县| 健康| 金门县| 延安市| 横峰县| 华亭县| 林州市| 洱源县| 柯坪县| 柳河县| 宜阳县| 腾冲县| 潼关县| 景宁| 玉树县| 彰化县| 庄浪县| 简阳市| 张家界市| 巢湖市| 双辽市| 陇西县|