- 浏览: 6383 次
-
最新评论
文章列表
mysql查询某天数据前后关联的数据
- 博客分类:
- mysql
根据一定的排序规则 查询 前一名、当前用户及 后一名用户的信息
select * from (select t1.*, if(t1.userid=118,@k:=t1.id,null ) as results from (select e.*, (@i:=@i+1) as id from appuser_ext e ,(select @i:=0) as it ) t1 ,(select @j:=0,@k:=0) as it2 ) ttt3where ttt3.id>=@k-2 and ttt3.id<=@k+2
eclipse安装SVN插件的两种方法
- 博客分类:
- eclipse
eclipse里安装SVN插件,一般来说,有两种方式:
直接下载SVN插件,将其解压到eclipse的对应目录里
使用eclipse 里Help菜单的“Install New Software”,通过输入SVN地址,直接下载安装到eclipse里
第一种方式:
1.下载SVN插件
SVN插件下载地址及更新地址,你根据需要选择你需要的版本。现在最新是1.8.x
Links for 1.8.x Release:
Eclipse update site URL: http://subcl ...
Installing Eclipse is relatively easy, but does involve a few steps and software from at least two different sources. Eclipse is a Java-based application and, as such, requires a Java runtime environment (JRE) in order to run.
Eclipse 4.7 (Oxygen)
Eclipse 4.7(Oxygen)was released on June 28, ...
Eclipse 插件之Easy Shell
- 博客分类:
- eclipse
1. Easy Shell 是什么?
官方说法:http://marketplace.eclipse.org/content/easyshell#.U1udtqF_V0x
简单说:可以在Eclipse IDE里选中一个文件或目录,利用Easy Sehll直接跳转到Sehll窗口,很方便
2. 安装方法
Help - Install New Software - Add, location输入 http://pluginbox.sourceforge.net/
2. 碰到的问题
问题: 安装完后, 在eclipse里选中 ...
如果报错信息如下:
Retrieving archetypes:' has encountered a problemAn internal error occurred during:"Retrieving archetypes
details:An internal error occurred during: "Retrievingarchetypes:".Java heap space
通过Eclipse创建Java Web项目,目录结构如下:
默认是只有src/main/resources 这个source folder
按照maven目录结构,还需要src/main/java ; src/test/java; src/test/resources 等
在eclipse中创建这些source folder时,会出现下面的情况:
解决如下:两种方法
一. 打开Eclipse的Navigator目录,依次创建missing的 source folder即可,然后需要像方法二一样,设置output folder等信息。
Windows -> Sho ...