- 浏览: 1295512 次
- 性别:
- 来自: 北京
最新评论
-
masuweng:
Intellij idea 主题下载网址 -
mimicom:
还有一个情况, 也是连不上 2018-05-06T06:01: ...
docker-compose 部署shipyard -
lixuansong:
put()方法调用前必须先手动调用remove(),不然不会实 ...
JavaScript创建Map对象(转) -
jiao_zg22:
方便问下,去哪里下载包含Ext.ux.TabCloseMenu ...
Ext.ux.TabCloseMenu插件的使用(TabPanel右键关闭菜单) 示例 -
netwelfare:
对于基本类型的讲解,文章写的有点简单了,没有系统化,这篇文章介 ...
Java 基础类型范围
文章列表
centos 安装php7
- 博客分类:
- PHP
yum -y remove php*
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum -y install php72w php72w-cli php72w-common php72w-devel php72w-embedded php72w-fpm php72w-gd php72w-mbstring php72w-mysqlnd php72 ...
https://www.cnblogs.com/xiaozi/p/10552100.html
show variables like 'validate_password%';
set global validate_password.length=1;
set global validate_password.mixed_case_count=0;
set global validate_password.number_count=0;
set global validate_password.special_char_count=0;
set global valid ...
JSTL格式化时间戳
- 博客分类:
- Java
JSTL格式化时间戳
参考:http://www.cnblogs.com/wlf-919874006/p/5070997.html
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
<jsp:useBean id="dateValue" class="java.util.Date"/>
<jsp:setProperty name="dateValue" proper ...
Mockito 在Spring容器中配置一个mock对象
在单元测试中,解决初始化Spring容器时有些bean依赖的问题
<bean name="testBeanId" class="com.company.testedClass">
<property name="yourService" ref="yourBeanId"/>
</bean>
<!--mock 引用的对象-- ...
Spring CGlib Superclass has no null constructors but no arguments were given
<bean id="beanId" class="com.bean.BeanId">
<!--构造器参数-->
<constructor-arg value="BeanId"/>
出现Superclass has no null constructors but no arguments we ...
Spring AOP AspectJ切入点语法详解(比较全面的)
参考:http://jinnianshilongnian.iteye.com/blog/1415606
Spring配置构造函数的参数
- 博客分类:
- Spring
Spring配置构造函数的参数
参考:http://blog.csdn.net/u013473691/article/details/50589021
<bean id="person" class="com.test.Person">
<constructor-arg value="张三"/>
<constructor-arg value="20"/>
</bean>
Spring配置集合列表
- 博客分类:
- Spring
Spring配置集合列表
参考:http://blog.csdn.net/wit_tang/article/details/51513186
注意要添加 schema/util
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/ut ...
小顶堆排序Java代码样例
- 博客分类:
- Java
小顶堆排序Java代码样例
import java.util.Arrays;
public class MinHeapTopN {
// top num
private int topN;
// top n number array
private int[] topNHeap;
/**
* init
*
* @param topN
* @param unSortedArray
*/
public MinHeapTopN(int topN, ...
海马玩模拟器 修改host(让hosts生效)
1、先修改文件访问权限
设置--常规设置--访问模式--选择超级用户访问模式
参考:http://jingyan.baidu.com/article/08b6a591a8429414a80922cd.html
2、修改hosts
/system/etc/hosts
添加你的访问域名(注意最后加一个回车 也就是多一个\n 这样hosts才生效)
192.168.1.100 www.yourdomain.com
参考:http://www.tuicool.com/articles/zAfq6bv
...
windows10获取管理员权限的方法
- 博客分类:
- Windows
windows10获取管理员权限的方法
http://www.xitongcheng.com/jiaocheng/win10_article_11454.html
gpedit.msc
依次点击打开“计算机配置”选项,然后再找到“Windows设置”这个选项,再从“Windows设置”找到并打开“安全设置”选项,接着打开“本地策略”最后找到打开“安全选项”即可。
找到“账户:管理员状态”,可以看见状态为“已禁用”,我们需要的是将它开启。
Spring AOP自定义注解样例
- 博客分类:
- Spring
Spring AOP自定义注解样例
参考:http://www.cnblogs.com/shipengzhi/articles/2716004.html
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Ann {
String value();
}
注解处理器
public class AnnoSupport {
/**
* 处理过程
* @param joinPoint AOP切入点
...
Spring中获取ApplicationContextt.xml配置文件的接口
参考:http://www.blogjava.net/xcp/archive/2011/06/22/352821.html
// Resource resource = new ClassPathResource("appcontext.xml");
// BeanFactory factory = new XmlBeanFactory(resource);
// 用classpath路径
// ApplicationC ...