首页 > 2016年08月06日 > 全部分享
建立数据库连接方式之一:桥接
特点:依赖ODBC,移植性差 ...
分类:数据库技术   时间:2016-08-06 08:21:05    收藏:0  评论:0  赞:0  阅读:394
FileAppender
http://logback.qos.ch/manual/appenders.html#FileAppender 这个testFile.log 会默认生成到项目根目录不推荐这样设置。 明确指定普通项目和WEB项目的日志文件位置: <file>E:${file.separator}logs${file ...
分类:移动平台   时间:2016-08-06 08:20:57    收藏:0  评论:0  赞:0  阅读:300
Introduction mybatis
项目地址 https://github.com/mybatis/mybatis-3 英文官网 http://mybatis.github.io/mybatis-3/ 中文官网 http://mybatis.github.io/mybatis-3/zh/index.html 生成工具 https:// ...
分类:其他   时间:2016-08-06 08:20:45    收藏:0  评论:0  赞:0  阅读:257
一)6张表
1用户表 SMSE_USER 2角色表 SMSE_ROLE 3菜单表 SMSE_MENU 4用户角色关联表 SMSE_USER_ROLE_LINK 5角色菜单关联表 SMSE_ROLE_MENU_LINK 6进入权限表 SMSE_ACCESS_PERMISSION sql: ...
分类:其他   时间:2016-08-06 08:20:36    收藏:0  评论:0  赞:0  阅读:124
SSH 密钥登录 SecureCRT
https://www.qcloud.com/doc/product/213/2036 1.3. 使用SecureCRT登录 1.3.1. 复制公钥 登录腾讯云控制台,点击【云服务器】-【SSH密钥】进入密钥窗口。点击您绑定了Linux云服务器的SSH密钥ID,进入密钥详情页,复制公钥信息。 将公钥 ...
分类:其他   时间:2016-08-06 08:20:25    收藏:0  评论:0  赞:0  阅读:199
datagrid 自定义 pager
...
分类:其他   时间:2016-08-06 08:20:15    收藏:0  评论:0  赞:0  阅读:212
JDBC 是什么
JDBC is a Java database connectivity technology (Java Standard Edition platform) from Oracle Corporation. This technology is an API for the Java progr ...
分类:数据库技术   时间:2016-08-06 08:20:05    收藏:0  评论:0  赞:0  阅读:320
mybatis insert 自动生成key
SYS_GUID (),是Oracle 8i 后提供的函数。 ...
分类:其他   时间:2016-08-06 08:19:56    收藏:0  评论:0  赞:0  阅读:197
linux内存监控 free
free 命令详解: 执行命令后总共四行。 第一行: 列头 第二行: total 内存总数: 32881776 used 已经使用的内存数: 8324796 free 空闲的内存数: 24556980 shared 当前已经废弃不用,总是0 buffers: Buffer Cache内存数: 486 ...
分类:系统服务   时间:2016-08-06 08:19:45    收藏:0  评论:0  赞:0  阅读:295
运算符 ||
判断 所有对象都被认为是 true。 字符串当且仅当为空时才被认为是 false。 null 和 undefined 被认为是 false。 数字当且仅当为 0 时才是 false。 NaN 被认为是false。 语法 var result = expression1 || expression2; ...
分类:其他   时间:2016-08-06 08:19:35    收藏:0  评论:0  赞:0  阅读:183
easyUI Methods
doc对象转jQuery 对象 $(doc Object); jQuery Object.控件名('方法'[,参数]); options 为该控件的属性 方式一: var opts = $('.easyui-datagrid').datagrid('options'); opts.loadMsg=" ...
分类:其他   时间:2016-08-06 08:19:28    收藏:0  评论:0  赞:0  阅读:249
google/protobuf hello world
/(ㄒoㄒ)/~~ 官网被墙 1. github > Search > protobuf or protocol buffers 2.https://github.com/google/protobuf 3. releases 4. protoc-3.0.0-alpha-2-win32.zip re ...
分类:其他   时间:2016-08-06 08:19:15    收藏:0  评论:0  赞:0  阅读:447
getConnection 区别
1. 这是一个接口 DataSource.class 2.这是一个dbcp实现类,返回由连接池管理的连接。 BasicDataSource.class 3. 创建连接并返回 DriverManager.class ...
分类:其他   时间:2016-08-06 08:18:46    收藏:0  评论:0  赞:0  阅读:221
dbcp 是什么
Many Apache projects support interaction with a relational database. Creating a new connection for each user can be time consuming (often requiring mu ...
分类:数据库技术   时间:2016-08-06 08:18:15    收藏:0  评论:0  赞:0  阅读:250
三)Wiring up jobs using triggers and the SchedulerFactoryBean
示例地址: https://github.com/witaste/quartz.git 两种触发器:简单的触发器和cron表达式触发器 ...
分类:其他   时间:2016-08-06 08:18:05    收藏:0  评论:0  赞:0  阅读:108
一)get started with the Quartz project
官网 http://www.quartz-scheduler.org/ 下载链接 http://www.terracotta.org/download/reflector.jsp?b=tcdistributions&i=quartz-2.2.2-distribution.tar.gz 提示 开源产品 ...
分类:其他   时间:2016-08-06 08:17:56    收藏:0  评论:0  赞:0  阅读:209
linux find
find / -name nginx.conf 在根目录下寻找nginx.conf 文件 find -help 举例: find / -name java find [path...] [expression] find [path...] -name [PATTERN] ...
分类:系统服务   时间:2016-08-06 08:17:45    收藏:0  评论:0  赞:0  阅读:249
mybatis 简单实现 left join
sql xml 内部调用不需要在mapper接口中定义(getTbNameById 只写到mapper.xml 中即可) 注:resultType or resultMap 和 association的property类型保持一致。 association 传多个参数 parameterType=" ...
分类:其他   时间:2016-08-06 08:17:25    收藏:0  评论:0  赞:0  阅读:2059
easyui 列表 条件检索
onclick="search()" 不要使用search命名检索方法,冲突,无法调用。 通用检索function ...
分类:其他   时间:2016-08-06 08:17:16    收藏:0  评论:0  赞:0  阅读:179
conn,stmt,rset 的关闭(规范)
...
分类:其他   时间:2016-08-06 08:17:05    收藏:0  评论:0  赞:0  阅读:106
1488条   上一页 1 ... 61 62 63 64 65 ... 75 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!