07 2018 档案

redis nginx session tomcat
摘要:Redis解决session共享 http://lyl-zsu.iteye.com/blog/2408292 http://zx10103326.iteye.com/blog/2244195 https://www.dssz.com/3179792.html 注意 要下载 三个 Redis 存放 s 阅读全文

posted @ 2018-07-22 12:47 chengjunde 阅读(178) 评论(0) 推荐(0) 编辑

HashMap 的底层原理
摘要:HashMap 的底层原理https://www.cnblogs.com/holyshengjie/p/6500463.html揭秘 HashMap 实现原理(Java 8)https://www.cnblogs.com/yangming1996/p/7997468.html 认识Thread的 s 阅读全文

posted @ 2018-07-20 18:44 chengjunde 阅读(121) 评论(0) 推荐(0) 编辑

创建与删除SQL约束或字段约束
摘要:https://www.cnblogs.com/accumulater/p/6807647.html https://blog.csdn.net/qq_40281800/article/details/78503181 阅读全文

posted @ 2018-07-20 18:08 chengjunde 阅读(91) 评论(0) 推荐(0) 编辑

java 生成验证Guid码
摘要: 阅读全文

posted @ 2018-07-20 14:20 chengjunde 阅读(171) 评论(0) 推荐(0) 编辑

jenkins
摘要: 阅读全文

posted @ 2018-07-20 13:37 chengjunde 阅读(100) 评论(0) 推荐(0) 编辑

hadoop经典案例
摘要:hadoop经典案例http://blog.csdn.net/column/details/sparkhadoopdemo.html 阅读全文

posted @ 2018-07-20 13:29 chengjunde 阅读(174) 评论(0) 推荐(0) 编辑

eclipse中下载maven插件解决办法
摘要:https://blog.csdn.net/qq_30546099/article/details/71195446 解决Eclipse Maven插件的最佳方案 https://www.cnblogs.com/rickyuu/p/4085589.html Eclipse中Maven插件的使用技巧及 阅读全文

posted @ 2018-07-20 11:32 chengjunde 阅读(92) 评论(0) 推荐(0) 编辑

eclipse中导入maven项目:org.apache.maven.archiver.MavenArchiver.getManifest(org.apache.maven.project.Maven
摘要:org.codehaus.plexus.archiver.jar.Manifest.write(java.io.PrintWriter) 解决方法为:更新eclipse中的maven插件 1.help -> Install New Software -> add ->https://otto.tak 阅读全文

posted @ 2018-07-20 09:50 chengjunde 阅读(139) 评论(0) 推荐(0) 编辑

mysql Alter 的问题
摘要:转自:https://blog.csdn.net/c_enhui/article/details/50903351 -- 设置或删除列的默认值。该操作会直接修改.frm文件而不涉及表数据。 此操作很快 -- ALTER COLUMN ALTER TABLE dsp_ad_center.XianDua 阅读全文

posted @ 2018-07-20 09:34 chengjunde 阅读(210) 评论(0) 推荐(0) 编辑

代理模式:利用JDK原生动态实现AOP
摘要:代理模式:利用JDK原生动态实现AOP http://www.cnblogs.com/qiuyong/p/6412870.html 1、概述 含义:控制对对象的访问。 作用:详细控制某个(某类)某对象的方法,在调用之前做前置处理,调用之后做后置处理,从而实现将统一流程代码放在代理类中处理。 举例:我 阅读全文

posted @ 2018-07-20 09:19 chengjunde 阅读(156) 评论(0) 推荐(0) 编辑

JAVA中关于set()和get()方法的理解及使用
摘要:https://www.cnblogs.com/fly-sky-han/p/6564439.html 我们先来看看set和get这两个词的表面意思,set是设置的意思,而get是获取的意思,顾名思义,这两个方法是对数据进行设置和获取用的。而且,在类中使用set和get方法时,都是在set和get后面 阅读全文

posted @ 2018-07-20 09:17 chengjunde 阅读(178) 评论(0) 推荐(0) 编辑

java 中 Cannot make a static reference to the non-static 解决方法
摘要:今天敲代码的时候遇到了这个问题,大体这个问题可以简化成这样; 1 2 3 4 5 6 7 8 9 10 显示 Cannot make a static reference to the non-static method get() from the type Test1 好吧,我决定改成这样 1 阅读全文

posted @ 2018-07-19 19:44 chengjunde 阅读(1076) 评论(0) 推荐(0) 编辑

maven clean 异常问题
摘要:当使用`mvn clean`,报`maven… Failed to clean project: Failed to delete ..`时,如果你觉得这个文件删除成功或失败没有关系,可以使用如下命令,强制clean: mvn clean test -Dmaven.clean.failOnError 阅读全文

posted @ 2018-07-19 19:40 chengjunde 阅读(635) 评论(0) 推荐(0) 编辑

redis 与session
摘要:springboot:session集中存储到redis https://www.cnblogs.com/huiy/p/6907164.html springboot处理session生命周期 https://www.cnblogs.com/jin-zhe/p/8204058.html spring 阅读全文

posted @ 2018-07-19 00:52 chengjunde 阅读(820) 评论(1) 推荐(0) 编辑

Nginx 与 tomcat 部署网站
摘要:http://www.blogjava.net/libin2722/articles/355631.html http://congpeixue.iteye.com/blog/255011 keepalived+nginx+tomcat的简单部署 http://blog.51cto.com/xiao 阅读全文

posted @ 2018-07-18 01:03 chengjunde 阅读(159) 评论(0) 推荐(0) 编辑

linux 进程在后台执行
摘要:把任务放到后台用 & 和 Ctrl+z 让后台任务从停止状态转为运行状态用 bg %N 把后台任务调回到前台用 fg %N 查看所有任务用jobs https://www.cnblogs.com/imsoft/p/7942523.html https://blog.csdn.net/dulingti 阅读全文

posted @ 2018-07-17 18:41 chengjunde 阅读(91) 评论(0) 推荐(0) 编辑

印象笔记
摘要:账号:邮箱2 密a123-321 阅读全文

posted @ 2018-07-17 09:18 chengjunde 阅读(103) 评论(0) 推荐(0) 编辑

consul 小結
摘要:Consul Config 使用Git做版本控制的实现 https://segmentfault.com/a/1190000013807641 服务发现 - consul 的介绍、部署和使用 https://www.cnblogs.com/xiaohanlin/p/8016803.html 【Con 阅读全文

posted @ 2018-07-17 00:57 chengjunde 阅读(243) 评论(1) 推荐(0) 编辑

spring boot 使用拦截器,注解 实现 权限过滤
摘要:http://www.cnblogs.com/zhangXingSheng/p/7744997.html spring boot 使用拦截器 实现 用户登录拦截 http://www.cnblogs.com/zhangXingSheng/p/7744993.html shiro (java安全框架) 阅读全文

posted @ 2018-07-16 17:50 chengjunde 阅读(257) 评论(0) 推荐(0) 编辑

Springcloud/Springboot项目绑定域名,使用Nginx配置Https
摘要:https://blog.csdn.net/a_squirrel/article/details/79729690 一、Https 简介(百度百科) HTTPS(全称:Hyper Text Transfer Protocol over Secure Socket Layer),是以安全为目标的HTT 阅读全文

posted @ 2018-07-16 17:39 chengjunde 阅读(7341) 评论(0) 推荐(0) 编辑

spring boot 登录认证
摘要:玩转spring boot——简单登录认证 https://www.cnblogs.com/GoodHelper/p/6343190.html 玩转spring boot——简单登录认证 https://blog.csdn.net/mixiaogui/article/details/77247455 阅读全文

posted @ 2018-07-16 17:11 chengjunde 阅读(180) 评论(0) 推荐(0) 编辑

mysql 的行转列 PIVOT 的使用
摘要:语句:SELECT DataDate , PropertyText , DataValue FROM RPT_ReportProperty p WITH ( NOLOCK ) JOIN RPT_ReportData d WITH ( NOLOCK ) ON p.PropertyID = d.Prop 阅读全文

posted @ 2018-07-16 16:22 chengjunde 阅读(19981) 评论(3) 推荐(0) 编辑

maven spring MVC 及tomcat
摘要:eclipse+tomcat8+springMVC环境搭建https://blog.csdn.net/code_fighter/article/details/79169058 Eclipse+Tomcat+springMVC环境搭建与jsp页面学习笔记https://blog.csdn.net/z 阅读全文

posted @ 2018-07-15 00:06 chengjunde 阅读(91) 评论(0) 推荐(0) 编辑

eclipse及tomcat web站點
摘要:eclipse环境下如何配置tomcat https://www.cnblogs.com/Leo_wl/p/4769760.htmleclipse环境下如何配置tomcat,并且把项目部署到Tomcat服务器上https://blog.csdn.net/yerenyuan_pku/article/d 阅读全文

posted @ 2018-07-15 00:04 chengjunde 阅读(95) 评论(0) 推荐(0) 编辑

利用eclipse新建的java web项目没有部署描述符web.xml文件怎么办?
摘要:利用eclipse新建的java web项目没有部署描述符web.xml文件怎么办? 解决办法: 1、右键项目名称-》Java EE Tools-》Generate Deployment descriptor stub 即可生成web.xml文件。 或者 <plugin> <groupId>org. 阅读全文

posted @ 2018-07-14 00:47 chengjunde 阅读(205) 评论(0) 推荐(0) 编辑

maven--spring-boot-starter-parent 小结
摘要:Maven中的dependency的scope作用域详解 https://blog.csdn.net/itchiang/article/details/45009057 https://blog.csdn.net/leoxyk/article/details/79622507 Spring Boot 阅读全文

posted @ 2018-07-13 19:11 chengjunde 阅读(126) 评论(0) 推荐(0) 编辑

Linux下MySQL 数据库的基本操作
摘要:https://www.cnblogs.com/Glory-D/p/7518541.html linux下mysql数据库导入导出命令 https://www.cnblogs.com/chandb/p/7425680.html MySQL源码详解一 mysqld启动 https://blog.csd 阅读全文

posted @ 2018-07-13 16:15 chengjunde 阅读(156) 评论(0) 推荐(0) 编辑

mysql 跨库查询问题
摘要:MySQL实现跨服务器查询 https://blog.csdn.net/LYK_for_dba/article/details/78180444 mysql> create database lianxi; mysql> use lianxi mysql> CREATE TABLE tab_test 阅读全文

posted @ 2018-07-13 16:02 chengjunde 阅读(810) 评论(0) 推荐(0) 编辑

mysql 索引相关问题
摘要:mysql中key 、primary key 、unique key 与index区别 https://blog.csdn.net/nanamasuda/article/details/52543177 mysql 中UNIQUE KEY 到底是约束还是索引? https://blog.csdn.n 阅读全文

posted @ 2018-07-13 12:51 chengjunde 阅读(135) 评论(0) 推荐(0) 编辑

spring MVC 及 AOP 原理
摘要:SpringMVC工作原理https://www.cnblogs.com/xiaoxi/p/6164383.htmlspring MVC 原理https://blog.csdn.net/y19910825/article/details/78645021Spring MVC处理的流程:https:/ 阅读全文

posted @ 2018-07-12 20:10 chengjunde 阅读(152) 评论(0) 推荐(1) 编辑

java 资源文件夹下的MEAT-INF
摘要:META-INF文件夹是干啥的,META-INF文件夹的作用, META-INF文件夹能删吗 https://www.cnblogs.com/demingblog/p/5653844.html Jar包详解和META-INF作用(… https://blog.csdn.net/javazilu/ar 阅读全文

posted @ 2018-07-11 17:03 chengjunde 阅读(420) 评论(0) 推荐(0) 编辑

spring boot 国际化MessageSource
摘要:转自:https://blog.csdn.net/flowingflying/article/details/76358970 spring中ResourceBundleMessageSource的配置使用方法 https://blog.csdn.net/qq_31230529/article/de 阅读全文

posted @ 2018-07-11 15:20 chengjunde 阅读(2053) 评论(0) 推荐(0) 编辑

@configurationProperties的写法
摘要: 阅读全文

posted @ 2018-07-10 18:55 chengjunde 阅读(87) 评论(0) 推荐(0) 编辑

java HTTP代码示例
摘要://测试环境发送用例 @Test public void testSendForTest() { String url = "http://172.16.30.108:8138/api/doDeliver"; String appkey = "00d40313b7f340ec8df6a3dff293 阅读全文

posted @ 2018-07-10 18:49 chengjunde 阅读(251) 评论(0) 推荐(0) 编辑

eclipse创建文件package,source folder和folder区别及相互转换
摘要:原文:http://blog.csdn.net/u014079773/article/details/66973910 https://www.cnblogs.com/shihaiming/p/7356182.html 在eclipse下package,source folder,folder都是文 阅读全文

posted @ 2018-07-10 15:46 chengjunde 阅读(392) 评论(0) 推荐(0) 编辑

spring 及 spring boot 资源文件配置
摘要:Spring配置文件引入xml文件: <import resource=" " />标签使用总结 https://www.cnblogs.com/javahr/p/8384681.html spring import resource classpath*:和class:的区别 http://pow 阅读全文

posted @ 2018-07-10 12:43 chengjunde 阅读(152) 评论(0) 推荐(0) 编辑

深入理解Java枚举类型(enum)
摘要:https://blog.csdn.net/javazejian/article/details/71333103 深入理解Java类型信息(Class对象)与反射机制 深入理解Java枚举类型(enum) 深入理解Java注解类型(@Annotation) 深入理解Java并发之synchroni 阅读全文

posted @ 2018-07-09 18:48 chengjunde 阅读(285) 评论(0) 推荐(0) 编辑

Linux环境变量配置的三个方法--/etc/profile,~/.bashrc,shell
摘要:https://www.cnblogs.com/jpfss/p/6560703.html 【环境配置的原因】 在windows系统下,很多软件的安装都需要设置环境变量,比如安装JAVA JDK。如果不安装环境变量,在非软件安装的目录下运行javac命令,将会报告“找不到文件”类似的错误。那么,什么是 阅读全文

posted @ 2018-07-09 18:46 chengjunde 阅读(177) 评论(0) 推荐(0) 编辑

JAXB和XStream比较
摘要:转自:https://www.cnblogs.com/tang9139/p/4825610.html http://www.cnblogs.com/wlsblog/p/7452882.html 这两东东本质上是有差别的,JAXB称为OX binding工具,XStream应该算序列化工具,但OX b 阅读全文

posted @ 2018-07-09 18:23 chengjunde 阅读(3961) 评论(0) 推荐(0) 编辑

java将配置信息写在数据库(利用反射)
摘要:Demo出处: 1. package com.fpx.pcs.prealert.process.xml.service.impl; public class CainiaoPushMessageServiceImpl implements ICainiaoPushMessageService { @ 阅读全文

posted @ 2018-07-09 14:23 chengjunde 阅读(272) 评论(0) 推荐(0) 编辑

【大数据实战】Logstash采集->Kafka->ElasticSearch检索
摘要:【大数据实战】Logstash采集->Kafka->ElasticSearch检索 https://www.cnblogs.com/snova/p/9203425.html 阅读全文

posted @ 2018-07-08 16:51 chengjunde 阅读(104) 评论(0) 推荐(0) 编辑

Linux 安装rabbitmq 遇到的一些问题
摘要:Linux下防火墙开启相关端口及查看已开启端口 https://www.cnblogs.com/pizitai/p/6518987.htmlhttps://www.cnblogs.com/blog-yuesheng521/p/7198829.html rabbitmq web 不能访问的【rabbi 阅读全文

posted @ 2018-07-08 15:03 chengjunde 阅读(328) 评论(0) 推荐(0) 编辑

Linux 下的jdk安装
摘要:Linux 下安装JDK1.8 https://www.cnblogs.com/xuliangxing/p/7066913.html http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 阅读全文

posted @ 2018-07-07 23:56 chengjunde 阅读(86) 评论(0) 推荐(0) 编辑

关于java 线程池 ThreadPoolExceutor 之 TestDemo
摘要:public class App { public static void main(String[] args) throws InterruptedException { System.out.println("这是测试项目"); // ExecutorService executorServi 阅读全文

posted @ 2018-07-06 17:55 chengjunde 阅读(184) 评论(0) 推荐(0) 编辑

Maven 一段时间知识小结2
摘要:父 Pom.xml <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.13.RELEASE</version> < 阅读全文

posted @ 2018-07-06 11:04 chengjunde 阅读(105) 评论(0) 推荐(0) 编辑

数据库迁移解决方案总结
摘要:1.navicat for mysql 数据库备份与还原https://www.cnblogs.com/helkbore/p/5741694.html2.实现数据库备份与还原[归纳三种方法]https://www.cnblogs.com/visec479/p/4103029.html 3.一个跨库复 阅读全文

posted @ 2018-07-05 19:20 chengjunde 阅读(393) 评论(0) 推荐(0) 编辑

Row_Number() over( PARTITION By cno ...)
摘要:DROP TABLE IF EXISTS `score`; CREATE TABLE `score` ( `id` int(10) NOT NULL AUTO_INCREMENT, `subject_id` char(10) DEFAULT NULL, `student_id` char(10) D 阅读全文

posted @ 2018-07-04 10:06 chengjunde 阅读(416) 评论(0) 推荐(0) 编辑

比较好的Json 格式数据
摘要:{ "81040753986": [{ "order_info": { "unique_package_reference": "LP00104760730736", "force_smartrouting": "yes", "order_number": "186265656792499700", 阅读全文

posted @ 2018-07-04 09:45 chengjunde 阅读(272) 评论(0) 推荐(0) 编辑

.net 下的 HttpRuntime.Cache 应用
摘要:using System;using System.Collections.Generic;using System.Diagnostics;using System.Linq;using System.Threading;using System.Web;using System.Web.Cach 阅读全文

posted @ 2018-07-02 14:34 chengjunde 阅读(181) 评论(0) 推荐(0) 编辑

导航

< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8
点击右上角即可分享
微信分享提示