上一页 1 2 3 4 5 6 ··· 27 下一页
摘要: 我在本地建的Oracle数据库在调试自己写的存储过程的时候提示缺少 debug connect session 权限,一般情况下根据这个提示直接用管理员账号登录进去,执行 grant debug connect session to '你的用户名'这样的sql就行了,但是问题来了,当我在命令提示符窗 阅读全文
posted @ 2017-06-30 11:19 Sunor 阅读(7790) 评论(0) 推荐(1) 编辑
摘要: 获取页面链接中的参数,以数组形式返回: 阅读全文
posted @ 2017-06-12 09:40 Sunor 阅读(356) 评论(0) 推荐(0) 编辑
摘要: 效果如下: 阅读全文
posted @ 2017-06-02 14:00 Sunor 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 类似于下图的效果: 代码: 阅读全文
posted @ 2017-05-26 23:42 Sunor 阅读(1840) 评论(0) 推荐(0) 编辑
摘要: 1 select * from SY_ZGRD where SHZT_DM = '01' and ZXBZ ='Y' AND SQRQ >= '2017-04-28 00:00:00' AND SQRQ = '2017-04-28 00:00:00' AND SQRQ =1; 阅读全文
posted @ 2017-05-05 15:16 Sunor 阅读(2095) 评论(0) 推荐(0) 编辑
摘要: 1.首先肯定是容器一启动就要启动定时器,所以我们可以选择把定时器写在一个监听器里,容器一启动所以监听器也就跟着启动,然后定时器就可以工作了。 第一步,把自己写的监听器加到web.xml中; 第二步,写一个监听器,实现ServletContextListener接口; 第三步,写一个定时器,继承Tim 阅读全文
posted @ 2017-05-05 15:08 Sunor 阅读(10671) 评论(0) 推荐(1) 编辑
摘要: Oracle计算两天两个日期间相差的天数: 1 select to_date('19930411','yyyymmdd')-to_date('19890507','yyyymmdd') from dual; 阅读全文
posted @ 2017-05-03 17:29 Sunor 阅读(26079) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping 这个注解标注在方法名上,如 @RequestMapping(value="/*") 1 就是拦截所有请求 结合上面的一小段代码就是拦截: 类似于http://localhost:8080/SpringMVCTag/helloworld/我是任意字符, http://l 阅读全文
posted @ 2017-04-20 17:36 Sunor 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 1 ThreadLocal.class 2 /** 3 * Sets the current thread's copy of this thread-local variable 4 * to the specified value. Most subclasses will have no need to 5 * override this me... 阅读全文
posted @ 2017-04-10 16:07 Sunor 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 参考自: http://blog.csdn.net/tgxblue/article/details/8479147 HashMap和HashTable的异同: 1 HashMap是非线程安全的,HashTable线程安全, 2 有了第一点,那么HashMap肯定效率高一些,HashTable要低一些 阅读全文
posted @ 2017-04-07 14:46 Sunor 阅读(251) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 27 下一页