上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页
摘要: http://flashing.iteye.com/blog/2162315?utm_source=tuicool 大概是这样,要到https://certs.godaddy.com/repository下载个东西,当时自己试的时候没做笔记 折腾了几个小时,因为就没一个完整的说的对的。 大体过程是生 阅读全文
posted @ 2018-04-10 10:58 aLa神灯 阅读(535) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_17164811/article/details/782037661.Insert title here 2.$('#id').serialize( ); 这时表单的按钮的type不可以是submit,否则自提交数据,也就是自动刷新;改为buttonInsert title... 阅读全文
posted @ 2018-04-09 16:42 aLa神灯 阅读(214) 评论(0) 推荐(0) 编辑
摘要: package set; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.List; public class SetSort { public static void main(String[] args) { ... 阅读全文
posted @ 2018-04-09 16:13 aLa神灯 阅读(139) 评论(0) 推荐(0) 编辑
摘要: @RequestParam 用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是application/x-www-form-urlencoded类型) RequestParam可以接受简单类型的属性,也可以接受对象类型。 实质是将Request.g... 阅读全文
posted @ 2018-04-09 16:11 aLa神灯 阅读(56010) 评论(4) 推荐(5) 编辑
摘要: 写入clob数据 import java.io.Writer; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class TestClobIn { public static void main... 阅读全文
posted @ 2018-04-03 14:49 aLa神灯 阅读(845) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/guodongsoft/article/details/52399527 我们在使用JNDI调用某个对象时,会有下述两种方式 context.lookup(“java:comp/env/XXX”) context.lookup(“XXX”) context 阅读全文
posted @ 2018-03-29 14:10 aLa神灯 阅读(2099) 评论(0) 推荐(0) 编辑
摘要: table{ border-collapse : collapse; } myCell4.innerHTML = ""; 阅读全文
posted @ 2018-03-20 18:28 aLa神灯 阅读(667) 评论(0) 推荐(0) 编辑
摘要: Enumeration paraNames = request.getParameterNames(); while(paraNames.hasMoreElements()){ String paraKey = paraNames.nextElement(); String paraValue = request.getParameter(paraKey); ... 阅读全文
posted @ 2018-03-17 14:23 aLa神灯 阅读(258) 评论(0) 推荐(0) 编辑
摘要: package note; public class NoteOne { /** * * 一般是在web.xml设置访问首页 * * 用spring-mvc 开发,路径默认为拦截所有时, dispatcherServlet / * 应用程序的首页定义会出现问题,... 阅读全文
posted @ 2018-03-14 10:26 aLa神灯 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 数据库连接方式: c3p0与dbcp区别 dbcp没有自动回收空闲连接的功能 c3p0有自动回收空闲连接功能 其实,它的原理就跟线程池差不多。大概是这个样子的,用一个容器,比如,一个 List,在初始化的时候,就往这个 List 里面存入 10 个 Connection ,然后你需要的话,就从这个 List 中取一个,如果多个人同时需要连接的话,那么就依次从这个 List 中取,但最多只能... 阅读全文
posted @ 2018-03-11 15:39 aLa神灯 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 23 下一页