- 浏览: 38490 次
- 性别:
- 来自: 上海
最新评论
-
dustar1992:
[/i][i][/i][i][i][/i ...
第一个Lucene 3.6 (3.X) 入门实例 -
760865548:
analyzers
第一个Lucene 3.6 (3.X) 入门实例 -
fanguozi:
为什么下载的是歌曲呢?还以为是代码呢
第一个Lucene 3.6 (3.X) 入门实例 -
fs_cyb:
非常好。。。
第一个Lucene 3.6 (3.X) 入门实例 -
chendexin2012:
第一个Lucene 3.6 (3.X) 入门实例
文章列表
主:
Enter password: *******
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.1.73-community-log MySQL Community Server (GPL)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark ...
今天在VM上打算配个Mysql主从的服务,用RPM方式安装MYSQL-server时冲突,
原来是Centos7上面默认安装有Mariadb-lib了,果断 yum remove mariadb后安装成功!
引用
Using username "root".
Last login: Sat Mar 14 17:01:13 2015 from 192.168.230.1
[root@localhost ~]# cd /ford/mysql
[root@localhost mysql]# ls
MySQL-community-5.1.73-1.rhel5.x86_64.rpm ...
CentOS 7 之前的版本是通过 /etc/inittab 文件来定义系统运行级别:
#
# ADDING CONFIGURATION HERE WILL HAVE NO EFFECT ON YOUR SYSTEM.
#
# Ctrl-Alt-Delete is handled by /etc/systemd/system/ctrl-alt-del.target
#
# systemd uses 'targets' instead of runlevels. By default, there are two main targets:
#
# multi-user.tar ...
gerrit
capistrano
zibbix
http://blog.csdn.net/vshuang/article/details/5423604
http://www.cnblogs.com/lovebread/archive/2009/11/23/1609122.html
arrList.splice(jQuery.inArray('b',arrList),1);
https://git.oschina.net/alexgaoyh/alexgaoyh
http://blog.csdn.net/exceptional_derek/article/details/117132 ...
/**
* Client POJO.
*
* @hibernate.class table = "client"
* @hibernate.cache usage = "read-write"
*/
public class Client implements Serializable {
private static final long serialVersionUID = -8361595011677919387L;
/**
*
* @hibernate.id ...
Failed to convert property value of type 'java.lang.String' to required type 'int' for property
org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 8 errors
Fixed:
Change int to Integer.
INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/jdk1.6.0_43/jre/lib/i386/client:/usr/java/jdk1.6.0_43/jre/lib/i386:/usr/java/jdk1.6.0_43/jre/../lib/i386:/usr/java/packages/lib/i386:/lib:/usr ...
个人在Maven工程中运行Java文件时莫名其妙的不能执行,报如下错误
Java代码
Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/tools/javac/M
ain
Caused by: java.lang.ClassNotFoundException: com.sun.tools.javac.Main
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessCon ...
EasyMock和Mockito等框架,对static, final, private方法均是不能mock的。 这些框架普遍是通过创建Proxy的方式来实现的mock。 而PowerMock是使用CGLib来操纵字节码而实现的mock,所以它能实现对上面方法的mock。今天先来看一个简单的例子吧:
第一个注解是指定Runner
第二个是你要测试的类,这个里面调用了静态类
下面我结合EasyMock给一个简单的例子:
Java代码
import java.io.IOException;
public class SystemPropertyMockDemo { ...
public static string C10_36(long i)
{
string s = "";
int j = 0;
while (i > 36)
{
j = i % 36;
if (j < 10)
s += j.ToString();
else
s += Conve ...
class TooManyFieldsRule
- 博客分类:
- dd
View Javadoc
1 /**
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package net.sourceforge.pmd.lang.java.rule.codesize;
5
6 import java.util.HashMap;
7 import java.util.List;
8 import java.util.Map;
9
10 import net.sourceforge.pmd.lang.a ...
How to write a PMD rule
- 博客分类:
- sfsdf
--------------------------------------------------------------------------------
Last Published: 2012-01-31 | SourceForge > PMD SourceForge.net Project Page | Hosted by SourceForge
--------------------------------------------------------------------------------
Overview
Download PMD 5.0 Alph ...