gulp下载
摘要:Gulp新手入门教程 时间 2015-12-22 11:59:23 w3cTrain 原文 http://w3ctrain.com/2015/12/22/gulp-for-beginners/ 主题 Gulp CSS 时间 2015-12-22 11:59:23 w3cTrain 原文 http:/
阅读全文
gulp
摘要:windows 下安装nodejs windows 下安装nodejs 方法/步骤 1 下载安装文件 这是nodejs的官方网站,百度不喜欢连接,这里我就不发连接了。 我下载的文件是这个。下载的要和自己的系统匹配,不然会出现错误的。 安装文件 当然是双击安装,比ubuntu方便多了撒。 nodejs
阅读全文
String转json格式
摘要:import java.lang.reflect.Field; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.List; import com.jssh.bean.system.SysMen
阅读全文
eclipse快捷键
摘要:1. 打开MyEclipse 6.0.1,然后“window”→“Preferences” 2. 选择“java”,展开,“Editor”,选择“Content Assist”。 3. 选择“Content Assist”,然后看到右边,右边的“Auto-Activation”下面的“Auto Ac
阅读全文
删除重复数据
摘要:delete from 表 where id in (select id from (select max(id) as id,count(列) as count from 表group by 列 having count >1 order by count desc) as tab )
阅读全文
mysql 数据表中查找重复记录(条数)
摘要:SELECT 字段,COUNT(*) AS COUNT FROM 表名 GROUP BY 字段 HAVING COUNT>1;
阅读全文
数组换位子
摘要:package com.test; import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader; /** *2017-3-5 下午4:35:40 * @param * @since
阅读全文
常用String练习
摘要:package com.test; import java.util.Scanner; /** *2017-3-5 下午2:54:15 * @param * @since * @return */public class InterceptionStr {// 输入为一个字符串和字节数,输出为按字节
阅读全文
RequestMappin
摘要:Spring MVC之@RequestMapping 详解 Spring MVC之@RequestMapping 详解 引言: 项目中用到了REST风格来开发程序,但是当用POST、PUT模式提交数据时,发现服务器端接受不到提交的数据(服务器端参数绑定没有加任何注解),查看了提交方式为applica
阅读全文
maven
摘要:在工作中,需要用到maven。在安装好maven后,在eclipse中安装maven插件时,却遇到了问题,总是提示安装失败。提示信息如下: Cannot complete the install because one ormore required items could not be found
阅读全文