- 浏览: 104372 次
- 性别:
- 来自: 天津
最新评论
-
sqz10200:
...
urlrewrite 路径重写 -
侯上校:
Very Good !!!学习了……
tomcat jndi -
Rocket076:
简明易懂,学习了
java读取Excel -
captmjc:
myreligion 写道
引用(5)、record_buf ...
mysql性能优化的参数简介 -
mathgl:
xiaoZ5919 写道引用
(4)、max_connecti ...
mysql性能优化的参数简介
文章列表
public class Mail {
private final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
private String host = null; //服务器
private int port = 25; //端口
private String auth = null; //权限
private String username = null; //用户邮箱
private String password = null; //密码
...
public final class HibernateUtil {
private static SessionFactory sessionFactory = null;
private static String path = Common.decode(Thread.currentThread().getContextClassLoader().getResource("../../config.properties").getPath());
private static String message = null;
publi ...
linux 解压 tar.gz 文件命令:tar zxvf tomcat6.0.tar.gz linux 修改文件名: mv tomcat5.0 tomcat6.0 查看某个进程:ps -ef | grep tomcat 复制文件 : cp 文件名 目标路径 唤起机器 : ether-wake 目标网卡地址 登录系统的所有记录 : last 登录失败的所有记录 :lastb 动态查看进程 : top 列出所有用户 : who -a 卸载 : yum remove 文件名 在线安装 : yum install 文件名 查找文件 : find / -name 文件名 下载 : sz 文件名
使用以下命令配置以太网络 1、 ifconfig 可以使用ifconfig命令来配置并查看网络接口的配置情况。 例如: (1) 配置eth0的IP地址, 同时激活该设备。 #ifconfig eth0 192.168.1.10 netmask 255.255.255.0 up (2) 配置eth0别名设备eth0:1的IP地址,并 ...
public final class BeanFactory {
private static Map<String,Object> map = null;
static {
load();
}
public static Object getBean(String beanName) {
return map.get(beanName);
}
public static void load() {
map = new HashMap<String,Object>();
try {
Document doc = Do ...
//---------------------------创建索引
public class IndexWrite {
private IndexWrite() {}
public static String index () throws IOException {
//要创建索引目录:F:/search/index_create
File indexDirectory = new File (Common.INDEX_PATH + Common.INDEX_CREATE_DIRE ...
cron 是linux下定时执行工具, 可以在无需人工干预的情况下运行作业。由于cron是linux的内置服务,不能自动起来,可以用一下方法启动,关闭服务: /sbin/service crond start //启动服务 /sbin/service crond stop //关闭服务 /sbin/service crond restart //重启服务 /sbin/service crond reload //重新载入配置 也可以将这个服务在系统启动的时候自动启动 在/etc/rc.d/rc.local 这个脚本的末尾加上:/sbin/service crond start cro ...
if(!/(\S)+[@]{1}(\S)+[.]{1}(\w)+/.test(email))
alert("请输入正确的邮箱");
一、 jdk的安装 安装的jdk为:jdk-6u17-linux-x64-rpm.bin(linux下64位的) 1. 将文件上传至linux 2. 在当前目录输入 sh jdk-6u17-linux-x64-rpm.bin 3.看到 安装程序在询问您是否尊守许可协议页面 ,回车,空格 ...
/** * 此文件描述的是:PageBean.java */package cn.com.sohocat.util;
import cn.com.sohocat.common.Common;
/** * @author blaiu * */public class PageBean {
private String keyword; //关键字 private String urlAction; //超链action路径 private int pageNo; //pageNo:页 ...
package cn.com.sohocat.common;
/** * 此文件描述的是:常用工具转换类 */import java.io.File;import java.io.UnsupportedEncodingException;import java.text.DateFormat;import java.text.ParsePosition;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;import java.util.GregorianCalendar;
...
BeanHelp.class
package cn.com.sohocat.util;
import java.io.File;
import javax.servlet.ServletContext;
import org.springframework.context.ApplicationContext;import org.springframework.context.support.FileSystemXmlApplicationContext;import org.springframework.web.context.support.WebApplicationCo ...
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.s ...
web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.5" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun ...