- 浏览: 94049 次
- 性别:
- 来自: 大连
最新评论
-
u010145702:
而且为什么我再修改完时间后,重启一下服务器就可以执行了,求指教 ...
定时器介绍与Spring中定时器的配置 -
u010145702:
那如果我把系统时间修改了,定时器到指定时间为什么不执行任务啊? ...
定时器介绍与Spring中定时器的配置 -
xiangyufangai:
lzstone 写道huatu122 写道老东西了,前几年就会 ...
基于apache的tomcat负载均衡和集群配置 -
oujunfeng:
表述得很清晰,并有大量的实例代码,支持!
基于apache的tomcat负载均衡和集群配置 -
ka520888:
帅哥..我配置了.怎么APACHE启不了 请加我qq52219 ...
基于apache的tomcat负载均衡和集群配置
文章列表
JDK 64位
tomcat catalina.sh JAVA_OPTS配置:
JAVA_OPTS="-server -verbose:gc -Xms13000m -Xmx13000m -Xmn4000m -XX:PermSize=128m -XX:MaxPermSize=1024m -Xss1024k -XX:NewSize=1024m -XX:MaxNewSize=2048m -XX:+UseConcMarkSweepGC -XX:ParallelGCThreads=16 -XX:+UseCMSCompactAtFullCollection -XX:CMSMaxA ...
linux 下如何启动SVN服务
- 博客分类:
- 综合
先转到SVN的安装目录,比如,你安装在/home/svn 下面。
然后转到bin目录下,在这里可以看见一个叫svnserve的文件,我们需要用这个来启动SVN服务。
试一下svnserve --help,看看这个命令的帮组,其中有-d和-r,分别表示后台运行和数据仓库目录。
数据仓库目录表示你保存数据的地方,如你将工程的信息保存在/home/svndata下面,这个svndata就是你的数据仓库目录。
弄清楚了这些就可以来启动了:
输入命令:
svnserve -d -r /home/svndata
后面那个要跟你自己的数据仓库目录。
这样我们就启动了SVN了,S ...
http://www.kendoui.com/ kendoUI 前台框架
http://www.ligerui.com/ ligerui前台框架
http://www.iteye.com/news/26579-ui-web-qui-jquery Javaeye博主
http://www.iteye.com/news/24906 javaeye 博主 快速开发
http://wrongwaycn.github.io/bootstrap/docs/index.html
Bootstrap
增加:
http://j-ui.com/#demo_page1 Jui 富客户端
用yum安装Apache,Mysql,PHP.
- 博客分类:
- 综合
【引用:成长的PHPer http://hi.baidu.com/yinhuama/item/1bc5e77ea7d60f376f29f67f】
用yum安装Apache,Mysql,PHP.
用yum安装Apache,Mysql,PHP. 2.1安装Apache yum install httpd httpd-devel 安装完成后,用/etc/init.d/httpd start 启动apache 设为开机启动:chkconfig httpd on 2.2 安装mysql 2.2.1 yum install mysql mysql-server mysql-devel 同 ...
好久没有写博客了,最近遇到一个有意思的问题就是需要动态的将用户上传的图片进行缩小
下面是实现方式,希望对有此需求的朋友有所帮助
import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGImageEncoder;
public class ZipImage {
public static void transImage(String sourcePath, String descPath, int width, int height){
F ...
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
String sendMan = request.getParameter("sendMan");//发送人
String haveMan = request.getParameter("haveMan");//接收人,多者用,分割 ...
public class IbatisSessionFactory {
//配置文件
private static String CONFIG_FILE_LOCATION = "SqlMapper.xml";
//ThreadLocal存放当前线程中的SqlSession
private static final ThreadLocal<SqlSession> threadLocal = new ThreadLocal<SqlSession>();
private static SqlS ...
基于apache的tomcat负载均衡和集群配置
1】 下载安装
httpd-2.2.15-win32-x86-no_ssl.msi 网页服务器
32-bit Windows zip tomcat
mod_jk-1.2.30-httpd-2.2.3.so Apache/IIS 用来连接后台Tomcat的模块,支持集群和负载均衡
JK 分为两个版本 1,x 和 2.x ,其中 2.x 并不是最新的版本,它是 JK 的另外一个分支,后不知何因 ...
IE中PNG图片不显示最明显的症状就是百度map,google map不好用,一片灰色
解决办法:
开始->运行,在运行输入框中输入 “regsvr32
c:\windows\system32\pngfilt.dll”
(然后点击确定)
如果在注册时出现
“已加载c:\windows\system32\pngfilt.dll,但没有找到DllRegisterSever
输入点,无法注册这个文件”,则表明这个文件可能损坏了,你要去别的机子去Copy
一个好
的过来,再进行一次注册。
打开注册表,到这个路径
“HKEY_LOCAL_ ...
import java.text.*;
import java.util.*;
public class DateUtil {
private static final int[] dayArray = new int[] { 31, 28, 31, 30, 31, 30,
31, 31, 30, 31, 30, 31 };
private static SimpleDateFormat sdf = new SimpleDateFormat();
public static synchronized Calendar getCalend ...
1定时器的作用
在实际的开发中,如果项目中需要定时执行或者需要重复执行一定的工作,定时器显现的尤为重要。
例如,公司的考勤系统---刷卡
财务的审查,入账,报表都会需要定时器
当然如果我们不了解定时器就会用线程去实现,例如:
package org.lzstone.action
public class FinanceAction extends Thread{
private Date date;
public void run{
try{
while(true){
Thread.sle ...
首先在项目中加入Cairngorm.swc文件
一、建立一个valueObject类
package com.dream.valueObjects
{
public class User
{
public var username:String;
public var password:String;
public var return_Check_Login:String;
public function User()
{
this. ...
struts.xml
<struts>
<include file="GoogleSuggest.xml" />
<include file="login.xml"></include>
<include file="book.xml"></include>
<include file="upload.xml"></include>
<package name= ...
1、struts.configuration=org.apache.struts2.config.DefaultConfiguration
该属性指定加载struts2配置文件的配置文件管理器,该属性默认值就是org.apache.struts2.config.DefaultConfiguration,这个是struts2中的默认配置文件管理器,如果需要实现自己的配置管理器可以实现Configuration接口,可以加载自己的struts2配置文件管理器。
2、struts.locale=en_US 指定web应用的默认Locale
3、struts.i18n.encoding ...
由于图片服务器变更,要将文本字段中的服务器地址进行替换
字段类型 text
测试过程:
update image_server set image_text=replace(image_text,url1,url2)
错误信息:
函数 replace 的参数 1 的数据类型 text 无效。
我怀疑是text类型是replace不能识别的类型,所有准备换成varchar类型试一下,为了图方便,我在控制台直接将数据类型转换了一下,当然我是在测试,操作真正业务的时候不要这样直接的准换,容易丢失数据,最后我查看了一下我text文件中的数据,发现varchar(600 ...