`
文章列表
function loadScript(scriptArr){ if(scriptArr.length > 0){ var script = scriptArr[0]; jQuery.getScript(script,function(){ scriptArr.splice(0,1); loadScript(scriptArr); }); } } $(document).ready(function(){ $(function(){ $.ajax({ url: 'static/js/script.json', da ...
在一的一端的类上加上: @JsonIdentityInfo(generator = ObjectIdGenerators.IntSequenceGenerator.class,property = "@id")  
  public class ClazUtil { private static Logger logger = LoggerFactory.getLogger(ClazUtil.class); public static String verifyDTO(Object o,String[] names) { if(o == null){ String msg = "接口参数data不能为空!"; logger.error(msg); return msg; } ...
  public Map<Integer, String[]> toMap(String path) { Map<Integer,String[]> map = null; try { Workbook wb = new HSSFWorkbook(new FileInputStream(new File(path))); //对excel文件的处理 Sheet st = wb.getSheetAt(0); if(st != null){ map = new HashMap<Integer, String[]>(st.getLastRowNum()); fo ...
js的Array的常用操作: splice():强大 splice(0,2)会删除数组中的前两项 splice(2,0,"red","green")会从当前数组的位置 2 开始插入字符串"red"和"green" splice (2,1,"red","green")会删除当前数组位置 2 的项,然后再从位置 2 开始插入字符串 "red"和"green" 两个参数:要删除的第一项的位置和要删除的项数 三个参数:起始位置、 ...
<!--下拉列表开始--> <div class="ub t-bla"> <div class="uinn ulim">标签标签</div> <div class="ub-f1 ub uba uc-a1 c-wh b-org us-i sel"> <div class="ub-f1 ut-s uinn ulev-1 tx-l">下拉列表</div> <div class="ubl b-org c-red c ...
<div class="ubb b-gra uinn uc-t1"> <!--文本开始--> <div class="ub t-bla ulab ub-ac"> <div class="ulim">用户名</div> <div class="ub-f1 uinput uinn4"> <input placeholder="hello" type="text" class="uc- ...
ajax使用应该是有web容器的情况下使用,否则会报错,错误信息如下: XMLHttpRequest cannot load http://localhost:8080/myproject/weather. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .content{ height:100%; width:100%; display:-webkit-box; } .left,.right{ width:50%; } ...
前天在做一个cs的项目的时候,把一个list存入到map中,但是非常奇葩的是,我存进去后死活就是取不出来,还以为map不是同一个map的原因,单例也用上了,直到两三个小时之后,终于发现是什么原因了:原来我的键值是Integer类型,在取的时候传过来参数是String类型的,结果一迷糊就直接拿String来取了,而存的时候是用Integer类型来存的,真是粗心撒。这里就做了一个小demo来mark一下。 import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.M ...

google recaptcha

http://springinpractice.com/2008/03/13/how-to-recaptcha-your-java-application 这是google上给出的用annotation作出的例子,再往下面还有用servlet作出的例子,下载了下来,附在了下面的附件下,有兴趣的朋友可以看看。。。 主要是要有google的账号,然后在下面的网址下为你的网站注册一个 reCAPTCHA key,其中有private key和public key, 添加在你的程序中就可以使用了。。。 http://www.google.com/recaptcha/whyrecaptcha ...
今天,碰到了这样的问题:自己写了一个config.xml这样的配置文件, 路径:D:\programming software\myeclipse\workspace\Controller\WebRoot\WEB-INF\classes, 项目:是直接在window7下的MyEclipse中建的,被默认放在D:\programming software\myeclipse\workspace\, 用的是apache的dom4j的jar包, 代码: public class XmlTest{ public static void main(String[] args){ XmlTes ...
    连续好几次碰到这样的问题,在引入bootstrap.css,bootstrap.js以及jquery.js这个框架的时候,每次都会提示这样或者那样的错误,一个简单的引入就要花费好大的功夫,才能搞定,下面总结一下以前碰到的各种问题。     首先 ,先说一下这三个引入文件的放置顺序问题:     这三个在页面中放置的时候,jquery.js一定要放在最前面,因为在bootstrap.js中用到了jquery.js这个框架,所以如果把bootstrap.js放到了jquery.js的前面的话,在firefox的js提示台上就会提示网页引入的bootstrap.js有错误,因为,在boo ...

js省级联动

    博客分类:
  • js
这是我的一篇关于js解析xml练习的一篇文章:   <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv=&quo ...

exception(gson)

    博客分类:
  • gson
GsonBuilder gb=new GsonBuilder() ;          gb.excludeFieldsWithoutExposeAnnotation();         Gson gson = gb.create(); userList = userService.findAll();         userJson = gson.toJson(userList);                 getResponse().setContentType("application/json,charset=UTF-8");        ...
Global site tag (gtag.js) - Google Analytics