自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (4)
  • 收藏
  • 关注

转载 Sublime Text3自动保存的功能(失去焦点自动保存)

这是最新版本的Sublime Text3的设置方法 (三部曲);第一步:preferences 下面的settings;(和老版本的不一样了吧,之前有什么default 和 users,这里只有settings)第二步:现在分两边了,左边是只读的不能编辑,在左边ctrl + f ,然后在下面输入框里输入save_on_focus_lost,或者找185行第三

2017-10-31 11:40:30 11431 1

转载 mybatis中﹤![CDATA[ ]]> 的使用

问题: mybatis中﹤![CDATA[ ]]> 的使用描述:<!-- WARNING - @mbggenerated This element is automatically generated by MyBatis Generator, do not modify. This element was generated on Thu Oct 10 09:46:2

2017-10-30 21:08:27 8542 2

转载 解决使用Spring Boot、Multipartfile上传文件路径错误问题

1.问题描述关键字: SpringMVC 4.2.4 、 Spring Boot 1.3.1 、Servlet 3.0 、文件上传报错信息: java.io.IOException: java.io.FileNotFoundException: /tmp/tomcat.273391201583741210.8080/work/Tomcat/localhost/ROOT/tmp/sour

2017-10-25 11:41:29 4394

转载 如何更新npm版本

npm install -g npm但是,我尝试之后 查看npm当前版本npm -v显示的仍然是当前版本。npm 还有个命令是 update, 于是看了下官方文档:npm update [-g] [...]于是尝试使用该命令:npm update -g npm之后仍然是无效。最后去 npm 的官网发现使用如下命令:npm install npm@latest -g可以更新npm至最新版本。其中 @

2017-10-21 10:29:11 6539 1

原创 vuequillEditor上传图片

<quill-editor v-model="content" ref="myQuillEditor" @blur="onEditorBlur($event)" @focus="onEditorFocus($event)" @ready="onEditorReady($event)" @change="onEditorChange($event)">

2017-10-20 12:56:22 3220

转载 vue.js的devtools安装

安装1.github下载地址:https://github.com/vuejs/vue-devtools2.下载好后进入vue-devtools-master工程  执行npm install ----->npm run build.3.修改manifest.json 中的persistent为true 4.打开谷歌浏览器设置--->扩展程序--》勾选开发者模式---》添加

2017-10-16 17:30:04 459 1

转载 vue 实战问题-watch 数组或者对象

1 .普通的watchdata() { return { frontPoints: 0 }},watch: { frontPoints(newValue, oldValue) { console.log(newValue) }} 2、数组的watchdata() {

2017-10-16 17:18:22 5111 1

转载 tomcat服务如何配置vue-router的history模式

tomcat 目录下免得conf文件夹里面的web.xml文件加上下面的配置display-name>webappdisplay-name> description> webapp description> error-page> error-code>404error-code> location>/location> error-page>

2017-10-13 15:53:17 6603

转载 Vue PDF预览

vueshowpdf Installnpm install vueshowpdf -SQuick Start//template  vueshowpdf @closepdf="closepdf" v-show="isshowpdf" :pdfurl="pdfurls" @pdferr="pdferr" :maxscale='4' :minscale=

2017-10-13 11:08:13 15221 9

转载 基于vue.js的图像预览组件

Overview基于vue.js图像预览组件更多的手势操作还是开发中Demovue-fancyboxGithubgithub安装npm install vue-fancybox --saveimport fancyBox from 'vue-fancybox';基础用法div class="list" v-for="(

2017-10-13 11:05:07 10098 4

转载 如何在win10(64位系统)上安装apache服务器

今天装了Apache服务器,下面是我总结的方法:一,准备软件  1.64位的apache版本 传送门:http://www.apachelounge.com/download/  2.VC11运行库下载完成解压后的效果图我的解压目录是J:\apache\:二,修改文件打开J:\apache\Apache24\conf目录下的httpd.con

2017-10-12 16:53:49 381 1

转载 Vue-全局添加组件

在vue项目中,可以自定义组件像vue-resource一样使用Vue.use()方法来使用,具体实现方法:1、首先建一个自定义组件的文件夹,比如叫loading,里面有一个index.js,还有一个自定义组件loading.vue,在这个loading.vue里面就是这个组件的具体的内容,比如:template> div> loading...........

2017-10-12 14:28:06 4562

转载 vue2.0项目中使用Ueditor富文本编辑器示例

最近在vue项目中需要使用富文本编辑器,于是将Ueditor集成进来,作为公共组件。在线预览:https://suweiteng.github.io/vue2-management-platform/#/editor项目地址:https://github.com/suweiteng/vue2-management-platform 记得在右上角点个赞哦~1.放入静态资源并配置

2017-10-11 11:33:35 6318 2

转载 java的动态代理机制详解

在学习Spring的时候,我们知道Spring主要有两大思想,一个是IoC,另一个就是AOP,对于IoC,依赖注入就不用多说了,而对于Spring的核心AOP来说,我们不但要知道怎么通过AOP来满足的我们的功能,我们更需要学习的是其底层是怎么样的一个原理,而AOP的原理就是java的动态代理机制,所以本篇随笔就是对java的动态机制进行一个回顾。在java的动态代理机制中,有两个重要的类或

2017-10-10 21:59:08 328

转载 vuejs在服务器部署

首先VUE 是一个javascript的前端框架,注定了它是运行在浏览器里的,对服务器本地没有任何要求,只要一个静态文件服务器能通过http访问到其资源文件就足矣!无论你是用apache ,ngnix 就算你要用node 自己实现一个静态文件服务器,也用不了多少行代码。npm run dev 是用来在本地开发的时候做调试用的,vue开发的是前端的东西,不是nodejs 服务端程序,按道理讲,生

2017-10-10 11:12:44 602

HTTPCLIENT

import org.apache.http.HttpEntity; import org.apache.http.NameValuePair; import org.apache.http.client.ClientProtocolException; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.client.methods.HttpPost; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.apache.http.message.BasicNameValuePair; import org.apache.http.util.EntityUtils; import java.io.IOException; import java.io.UnsupportedEncodingException;

2018-04-20

httpclient常用 jar包工具

import org.apache.http.Header; import org.apache.http.HttpException; import org.apache.http.HttpRequest; import org.apache.http.HttpRequestInterceptor; import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.NameValuePair; import org.apache.http.client.entity.UrlEncodedFormEntity; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.conn.scheme.Scheme; import org.apache.http.conn.ssl.SSLSocketFactory; import org.apache.http.im

2018-04-20

ssm整合实例

2017-03-01

springmvc+shiro jar

包含了springmvc+shiro整合的所有jar

2016-07-07

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除