Nemo

Nemo 关注TA

路漫漫其修远兮,吾将上下而求索。

Nemo

Nemo

关注TA

路漫漫其修远兮,吾将上下而求索。

  •  普罗旺斯
  • 负责帅就完事了
  • 写了1,496,113字

首页(共有499文章)

最新发布 最多点击 最多讨论

  • Js判断IOS或者安卓

    varu=navigator.userAgent,app=navigator.appVersion;varisAndroid=u.indexOf('Android')>-1||u.indexOf('Linux')>-1;//android终端或者uc浏览器varisiOS=!!u.match(/\(i[^;]+;(U;)?CPU.+MacOSX/);//ios终端alert('是否是A......

     1,332    0    2017-05-19 14:58

  • Hello this world

    Hello this world
     

     4,228    0    2017-05-19 13:51

  • tomcat启动异常:org.apache.catalina.LifecycleException

    新部署服务,启动时报如下错误:03-May-201713:39:23.500信息[main]org.apache.catalina.startup.VersionLoggerListener.logServerversion:ApacheTomcat/8.5.1403-May-201713:39:23.500信息[main]org.apache.catalina.startup.VersionLo......

     4,888    0    2017-05-03 19:10

  • 【Git】fatal: Unable to create '/.git/index.lock': File exists.

    $gitadd-Afatal:Unabletocreate'/home/nemo/workpace/workpace01/Kira/.git/index.lock':Fileexists.Anothergitprocessseemstoberunninginthisrepository,e.g.aneditoropenedby'gitcommit'.Pleasemakesureallprocess......

     3,438    0    2017-05-02 19:18

  • Springboot 打包发布到tomcat

    第一步:将这个SpringBoot项目的打包方式设置为war<version>0.0.1</version><packaging>war</packaging>第二步去掉springboot中内嵌的tomcat模块,修改pom文件<dependency><groupId>org.springframework.boot<......

     3,207    0    2017-05-02 17:18

  • OpenCV JAR构建

    1、首先需要下载opencv的源码:gitclonehttps://github.com/opencv/opencv.git2、解压源码到制定目录:unzipopencv.zip3、进入解压目录开始编译:$cdopencv$mkdirbuild$cdbuild/$cmake-G"UnixMakefiles"-DCMAKE_CXX_COMPILER=/usr/bin/g++-DCMAKE_C_COM......

     4,152    0    2017-04-28 00:23

  • 验证码生成工具

    importjavax.imageio.ImageIO;importjava.awt.*;importjava.awt.geom.AffineTransform;importjava.awt.image.BufferedImage;importjava.io.File;importjava.io.FileOutputStream;importjava.io.IOException;importja......

     4,203    0    2017-04-27 11:23

  • BigDecimal操作工具

    importjava.math.BigDecimal;/***金额转换处理**@author:Nemo*/publicclassBigDecimalUtils{publicfinalstaticBigDecimalPERCENTILE=newBigDecimal("0.01");//百分比计算值/***可变长度的加法**@paramval1*@paramdecimals*@return*/publ......

     1,543    0    2017-04-27 11:21

  • Base64转换工具

    /***Base64转换工具*@author:Nemo2017年04月25日*/publicclassBase64Util{privatestaticfinalcharintToBase64[]={'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','......

     4,631    0    2017-04-27 11:19

  • 安卓/JAVA服务端RSA加解密工具

    Ubuntu下准备证书相关的文件:#创建私钥opensslgenrsa-outprivate_key.pem1024#创建证书请求(按照提示输入信息)opensslreq-new-outcert.csr-keyprivate_key.pem#自签署根证书opensslx509-req-incert.csr-outpublic_key.der-outformder-signkeyprivate_ke......

     1,847    0    2017-04-25 19:15

  • JoinPoint获取访问的类名前/方法前的注解

    /***访问拦截*@author:Nemo2017年04月24日*/@Aspect@ComponentpublicclassAuthAop{privatefinalLoggerlogger=Logger.getLogger(getClass());/***定义切点,所有的controller下的访问都拦截*/@Pointcut("execution(*com.nemo.backend.contro

     10,821    1    2017-04-24 18:47

  • RSAEncrypt 加密算法java实现

    importjava.io.File;importjava.io.FileOutputStream;importjava.io.ObjectOutputStream;importjava.security.Key;importjava.security.KeyPair;importjava.security.KeyPairGenerator;importjava.security.SecureRa......

     4,313    0    2017-04-21 15:26

  • Fastjson 转换Json返回前端乱码问题解决

    在使用fastjson转换对象为json返回给前端后,发现其中中文存在乱码。问题解决如下:@ConfigurationpublicclassWebMvcConfigextendsWebMvcConfigurerAdapter{/***利用fastjson替换掉jackson,且解决中文乱码问题*@paramconverters*/@OverridepublicvoidconfigureMessag......

     4,100    0    2017-04-20 14:22

  • 【IDEA】 org.apache.ibatis.binding.BindingException【原因汇总】

    项目在Eclipse中部署,一切正常。切换到Idea中后,启动OK,访问mapper报如下错误:org.apache.ibatis.binding.BindingException:Invalidboundstatement(notfound)推测有如下两种可能:1、接口已经被扫描到,但是代理对象没有找到,即使尝试注入,也是注入一个错误的对象(可能就是null)。2、接口已经被扫描到,代理对象找到......

     4,811    0    2017-04-17 14:08

  • npm 国内镜像设定

    镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):1.通过config命令npmconfigsetregistryhttps://registry.npm.taobao.orgnpminfounderscore(如果上面配置正确这个命令会有字符串response)2.命令行指定npm--registryhttps://registry.npm.taob......

     1,346    0    2017-04-13 22:04