今天开发过程中有涉及到回滚,然后回滚之后以该版本修改提交到分支的情况,熟悉了几个简单的命令 git reflog 查看提交过的版本号和注释 git reset --hard commit的id 或者 git reset --hard HEAD~ 本地回滚 重点是git rebase...
分类:
其他好文 时间:
2015-01-27 18:04:52
阅读次数:
176
问题描述:The?connection?to?adb?is?down,?and?a?severe?error?has?occured.You?must?restart?adb?and?Eclipse. 解决方法: 在cmd中进入adb的根目录,键入adb?kill-server,然后键入adb?-star...
分类:
移动开发 时间:
2015-01-27 13:39:17
阅读次数:
133
项目启动后,控制台报如下错误:org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a...
分类:
编程语言 时间:
2015-01-27 13:33:41
阅读次数:
4994
这是一个不错的Java学生管理系统项目案例,希望能够帮到大家的学习吧。分代码如下package com.student.util;import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException...
分类:
编程语言 时间:
2015-01-27 12:47:57
阅读次数:
162
分代码如下
package com.student.util;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class DbUtil {
private String dbUrl="jdbc:mysql://localhost:3...
分类:
编程语言 时间:
2015-01-27 11:09:51
阅读次数:
411
数据库版本:[root@mysqltest ~]# mysql -u root -p123456Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 389805Server versi...
分类:
数据库 时间:
2015-01-27 10:50:34
阅读次数:
156
【问题描述】调试基于ACCESS+ASP的网站程序的时候,遇到如下错误:ADODB.Connection 错误 '800a0e7a' 未找到提供程序。该程序可能未正确安装。/Inc/Function.asp,行 9 【原因分析】因为系统是64位的win7或win8.1所以会出现这个问题,解决方法如下...
分类:
数据库 时间:
2015-01-27 00:15:53
阅读次数:
237
所谓c10k问题,指的是服务器同时支持成千上万个客户端的问题,也就是concurrent 10 000 connection(这也是c10k这个名字的由来)。由于硬件成本的大幅度降低和硬件技术的进步,如果一台服务器同时能够服务更多的客户端,那么也就意味着服务每一个客户端的成本大幅度降低,从这个角度来看,c10k问题显得非常有意义。
为了解决C10K问题,有各种各样的IO策略,它们的分歧或者说...
分类:
其他好文 时间:
2015-01-26 22:44:56
阅读次数:
395
原文地址http://www.eyeapk.com/android-studio-update.htmlMac OSX中修改文件路径为 bin/idea.vmoptions ,添加如下内容,如果无效修改http为https试试看-Djava.net.preferIPv4Stack=true-Dide...
分类:
移动开发 时间:
2015-01-26 22:17:23
阅读次数:
883
response.reset(); response.setContentType("octets/stream"); response.addHeader("Content-Disposition","attachment;filename=test.xls"); Output...
分类:
Web程序 时间:
2015-01-26 18:51:35
阅读次数:
180