摘要:
封装的commonSort.js function resetSort() { $("table tbody tr").each(function(index, obj) { $($(obj).find('td :eq(0)')).text(index + 1); })} function up()
阅读全文
posted @ 2017-03-28 20:36
爷的眼睛闪亮
阅读(257)
推荐(0)
posted @ 2017-03-25 13:36
爷的眼睛闪亮
阅读(185)
推荐(0)
posted @ 2017-03-25 11:59
爷的眼睛闪亮
阅读(273)
推荐(0)
摘要:
运行maven报错:[ERROR] No goals have been specified for this build. You must specify a valid lifecycle phase or a goal in the format : or :[:]:. Available
阅读全文
posted @ 2017-03-24 16:03
爷的眼睛闪亮
阅读(4804)
推荐(0)
摘要:
public static String deleteRepeat(String strn){ String s=strn; String[] array = s.split(","); Set<String> staffsSet = new HashSet<>(Arrays.asList(arra
阅读全文
posted @ 2017-03-23 20:09
爷的眼睛闪亮
阅读(1368)
推荐(0)
摘要:
String flag="all".toLowerCase();(小写) String flag="all".toUpperCase;(大写) 不区分大小写,无非就是将传入的参数统一转成小写 或者统一转成大写
阅读全文
posted @ 2017-03-23 10:07
爷的眼睛闪亮
阅读(198)
推荐(0)
摘要:
@ResponseBody @POST @Path("/megerPerson/{realName}") public ResultEntity partnerList(@PathParam("realName") String realName) { String flag="all".toLow
阅读全文
posted @ 2017-03-23 10:05
爷的眼睛闪亮
阅读(216)
推荐(0)
摘要:
public static String deleteRepeat(String str){ List list = new ArrayList(); StringBuffer sb = new StringBuffer(str); int j=0; for(int i=0; i<str.lengt
阅读全文
posted @ 2017-03-21 20:32
爷的眼睛闪亮
阅读(135)
推荐(0)
摘要:
在整合struts2.1.6+spring2.5.6开发中,使用了注解和struts-convention来实现零配置管理。spring也使用注解annotation方式。现在的问题是:我在连个个不同package中有两个相同名称的类,只是类所在的目录不同。例如在 com.idearsoft.ide
阅读全文
posted @ 2017-03-21 15:16
爷的眼睛闪亮
阅读(15953)
推荐(0)
摘要:
person package com.kerwin.mybatis.pojo;import java.util.List;public class Person { private int id; private String name; private List<Orders> orderList
阅读全文
posted @ 2017-03-20 19:41
爷的眼睛闪亮
阅读(207)
推荐(0)