摘要:
首先导入druid包,然后配置configPlugin 其次,配置handle 这样,只要输入 localhost/druid就可以了。这里设置只有admin登陆之后可以查看。 阅读全文
摘要:
1.string对象是final的?1 String str="asdfdf";2 str.replace("as","");3 System.out.println(str);//asdfdf4 str=str.replace("as","");5 System.out.println(str);... 阅读全文
摘要:
在javascript中对参数处理: 1 在javascript中对字符串String对象的属性:length--返回字符串长度,不是函数,不需要括号。prototype--添加属性和方法在javascript中对字符串String对象处理有一些函数:concat() -将两个或多个字符的文本组合起... 阅读全文