- 浏览: 32926 次
最新评论
-
enenxie:
Jacarri_Chan 写道破解后可以装插件吗?可以的!
JIRA6.0.7安装及汉化 -
Jacarri_Chan:
破解后可以装插件吗?
JIRA6.0.7安装及汉化
文章列表
1.提前安装docker、docker-compose
2.下载harbor
#下载harbor 安装harbor[root@localhost src]# cd /usr/src [root@localhost src] wget -c https://storage.googleapis.com/harbor-releases/release-1.7.0/harbor-offline-installer-v1.7.0.tgz[root@localhost src]# tar -zxvf harbor-offline-installer-v1.7.0.tgz[root@localhos ...
下载地址:https://github.com/happyfish100/libfastcommon.git
安装环境:
tracker:192.168.12.241Strorage:192.168.12.252 192.168.12.244
一、安装FastDFS
1.安装 libfastcommon-master.zip
unzip libfastcommon-master.zip -d /usr/local
cd /usr/local/libfastcommon-master
./make.sh
./make.sh ...
最近在考虑一个问题:公司项目可能会使用运算模板来计算相应的值,模板freemarker、velocity都是不错的选择。那通过模板将计算公式字符串组装出来后,就需要解析字符串得到计算结果,以下是我的实现:
public class Arithmetic {
private char[] oper = { '+', '-', '*', '/', '(', ')' };
public static void main(String args[]) {
Arithmetic arith = new Arithmetic();
System ...
1.生产web项目:
mvn archetype:generate -DgroupId=com -DartifactId=simple-web -DarchetypeArtifactId=maven-archetype-webapp
2.生产java项目:
mvn archetype:generate -DgroupId=com -DartifactId=simple-app -DarchetypeArtifactId=maven-archetype-quickstart
过滤器filter:
public class XSSProtectFilter
implements Filter
{
private static final Logger logger = Logger.getLogger(XSSProtectFilter.class);
private static String[] safeless = new String[0];
private static String xssAtackRedirectPath = "";
public void doFilter(ServletRe ...
一、封装自定义验证方法-validate-methods.js
/*****************************************************************
jQuery Validate扩展验证方法 (linjq)
*****************************************************************/
$(function(){
// 判断整数value是否等于0
jQuery.validator.addMethod(&quo ...
原文:http://my.oschina.net/scipio/blog/200447
配置php的时候出现以下问题解决方案
checking for MySQL support... yeschecking for specified location of the MySQL UNIX socket...nochecking for MySQL UNIX socket location... noconfigure: error: Cannot find libmysqlclient_r under/usr/local/mysql. Note that the MySQL client library is not bundledanymore!
其实这跟PHP没有关系 ...
Jboss AS7数据库连接密码加密
- 博客分类:
- jboss
<datasources>
<datasource jndi-name="java:jboss/datasources/testDS" pool-name="oracle" enabled="true" use-java-context="true">
<connection-url>jdbc:oracle:thin:@192.168.0.110:1521:mydb</co ...
详细介绍请见:http://blog.csdn.net/cutesource/article/details/5824490
Quartz集群问题:
This scheduler instance (SchedulerName) is still active but was recovered by another instance in the cluster
原因:集群服务器时钟不同步导致
This exception often occurs when the clock times on the cluster nodes are not synchronized. If the clock times on cluster nodes are more than 1.7 seconds out o ...
jps介绍:http://blog.csdn.net/fwch1982/article/details/7947451
jmap介绍:http://developer.51cto.com/art/201203/321422.htm
http://readwall.blog.163.com/blog/static/1012713220135135393315/
jstat介绍:http://liulinxia02.blog.163.com/blog/static/268687720117251501253/
ws cxf 验证访问
- 博客分类:
- cxf
一、服务端代码
接口类
@WebService
public interface HelloWorld {
public String sayHello(String param);
}
实现类
@WebService
public class HelloWorldImpl implements HelloWorld {
@Override
public String sayHello(String param) {
System.out.println("==================== ...
jprofile8 linux使用小结
- 博客分类:
- jprofile
附件中有jprofile jboss安装使用文档及破解码。
httpd: Syntax error on line 150 of /usr/local/apache2/conf/httpd.conf: Cannot load modules/mod_dav_svn.so into server: /usr/local/subversion/lib/libsvn_subr-1.so.0: undefined symbol: sqlite3_clear_bindings
在apache与subversion安装时遇到了以上问题,解决方法如下:
1.下载sqlite3
2.编译安装
./configure
make
make install
...