随笔 - 502  文章 - 1 评论 - 6 阅读 - 37万
< 2025年3月 >
23 24 25 26 27 28 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 29
30 31 1 2 3 4 5

11 2017 档案
Config Center
摘要:http://blog.csdn.net/gongxsh00/article/details/51292200 阅读全文
posted @ 2017-11-24 17:13 1161588342 阅读(156) 评论(0) 推荐(0) 编辑
Linux Maven安装
摘要:官网: http://maven.apache.org/download.cgi >wget http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.5.2/binaries/apache-maven-3.5.2-bin.tar.gz > 阅读全文
posted @ 2017-11-24 16:08 1161588342 阅读(130) 评论(0) 推荐(0) 编辑
Spring 3.2 事件驱动模型
摘要:事件 事件处理监听器 发布事件 ContextUtil.java 自己写的获取Spring上下文工具类 public class ContextUtil implements ApplicationContextAware { private static ApplicationContext ap 阅读全文
posted @ 2017-11-24 14:39 1161588342 阅读(428) 评论(0) 推荐(0) 编辑
Spring boot Tomcat配置
摘要:来自: https://www.cnblogs.com/a8457013/p/7687764.html 阅读全文
posted @ 2017-11-23 12:44 1161588342 阅读(129) 评论(0) 推荐(0) 编辑
Mysql 用户管理
摘要:用户管理权限设置: https://www.cnblogs.com/fslnet/p/3143344.html 只给用户看视图:http://blog.csdn.net/escapeplan/article/details/77164664 阅读全文
posted @ 2017-11-22 17:16 1161588342 阅读(105) 评论(0) 推荐(0) 编辑
STS 安装SVN插件
摘要:1:STS中 Help->Eclipse MarketPlace 搜索svn点击go安装svn插件,然后重启STS。 2:如果Team中出现SVN说明安装好了一半. 3: 手动安装SVN Connector. 点击如下链接下载. http://community.polarion.com/proje 阅读全文
posted @ 2017-11-20 18:34 1161588342 阅读(22714) 评论(1) 推荐(1) 编辑
Eclipse 项目共享到github
摘要:链接: http://blog.csdn.net/zjdwhd/article/details/52959867 阅读全文
posted @ 2017-11-17 10:26 1161588342 阅读(123) 评论(0) 推荐(0) 编辑
Spring @Trasactionl 失效, JDK,CGLIB动态代理
摘要:@Transaction: http://blog.csdn.net/bao19901210/article/details/41724355 Spring上下文: http://blog.csdn.net/yang123111/article/details/32099329 情况是这样的: 出现 阅读全文
posted @ 2017-11-15 19:27 1161588342 阅读(314) 评论(0) 推荐(0) 编辑
CentOS 7 Tomcat安装
摘要:官网: http://tomcat.apache.org/download-80.cgi 下 1.载zip包 >wget http://mirrors.hust.edu.cn/apache/tomcat/tomcat-8/v8.5.15/bin/apache-tomcat-8.5.15.zip 2.解压 >unzip apache-tomcat-8.5.15.zip 3.... 阅读全文
posted @ 2017-11-09 12:35 1161588342 阅读(124) 评论(0) 推荐(0) 编辑
CentOS 7 firewalld
摘要:1、firewalld的基本使用 启动: systemctl start firewalld 查看状态: systemctl status firewalld 停止: systemctl disable firewalld 禁用: systemctl stop firewalld 2.systemc 阅读全文
posted @ 2017-11-08 19:15 1161588342 阅读(203) 评论(0) 推荐(0) 编辑
Linux tomcat启动慢, Creation of SecureRandom instance for session ID generation using [SHA1PRNG]took [xx] mil
摘要:启动慢的解决链接: http://blog.csdn.net/u011627980/article/details/54024974 阅读全文
posted @ 2017-11-08 18:59 1161588342 阅读(151) 评论(0) 推荐(0) 编辑
CentOS Tomcat启动 Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
摘要:链接: http://blog.csdn.net/shangdiyisi/article/details/9477521 [bravoinfo@bravoinfo-hk-01 apache-tomcat-7.0.82]$ ./bin/startup.sh Neither the JAVA_HOME 阅读全文
posted @ 2017-11-08 18:49 1161588342 阅读(601) 评论(0) 推荐(0) 编辑
CentOS 7 JDK安装
摘要:官网: http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html 1.下载(下图有个错误, 应该是x64位的jdk-8u161-linux-x64.tar.gz) 替换下面的 http:// 阅读全文
posted @ 2017-11-08 16:42 1161588342 阅读(121) 评论(0) 推荐(0) 编辑
CentOS 7 基础命令安装
摘要:https://my.oschina.net/u/1428349/blog/288708 1. ifconfig安装 > yum install net-tools 临时变量(可以直接使用sbin目录下的命令) >export PATH = $PATH:/sbin 2、yum安装>yum -y in 阅读全文
posted @ 2017-11-08 15:40 1161588342 阅读(453) 评论(0) 推荐(0) 编辑
Spring mvc RequestContextHolder分析
摘要:转载: http://blog.csdn.net/zzy7075/article/details/53559902 阅读全文
posted @ 2017-11-07 19:14 1161588342 阅读(121) 评论(0) 推荐(0) 编辑
Java 反射
摘要:一个小小的Demo, 对Class不理解的去看看慕课网的反射 package com.reflect; public class Student { private String name; private Integer age; public Student(){} public Student 阅读全文
posted @ 2017-11-03 17:48 1161588342 阅读(124) 评论(0) 推荐(0) 编辑
自定义注解理解
摘要:转载: http://www.cnblogs.com/peida/archive/2013/04/24/3036689.html 阅读全文
posted @ 2017-11-02 11:22 1161588342 阅读(77) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示