- 浏览: 112994 次
- 性别:
- 来自: 武汉
最新评论
文章列表
import java.io.*;
public class MyEclipseGen {
private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 120 ...
/**
* 金额数字转换为中文大写格式
*/
public class Trans2RMB {
/**
*
* 测试程序的可行性
*
* @param args
*
*/
public static void main(String[] args) {
System.out.println("--------将数字转换成中文金额的大写形式------------\n");
Trans2RMB t2r = new Trans2RMB();
String s = t2r.cleanZ ...
如果 <img>标签的 src为一个 gif 动画,那么他的 onload事件会重复触发
<img src="http://zi.csdn.net/intel_120x60.gif
" onload='gorush(this)'>
<script type="text/javascript">
function gorush(obj){
alert("这样,就只会弹出一次")obj.onload=null;
}
</script>
解决办法,加上红色背景的代码。
...
Spring配置文件中关于事务配置总是由三个组成部分,分别是DataSource、TransactionManager和代理机制这三部分,无论哪种配置方式,一般变化的只是代理机制这部分。
DataSource、TransactionManager这两部分只是会根据数据访问方式有所变化,比如使用Hibernate进行数据访问时,DataSource实际为SessionFactory,TransactionManager的实现为HibernateTransactionManager。
具体如下图:
根据代理机制的不同,总结了五种Spring事务的配置 ...
可执行的jar文件与普通的jar文件只有一处不同,就是在jar文件中META-INF文件夹下的配置文件多了
Main-Class这个参数,这个参数所指定的值是指定要执行的java类的完整类名(包括包名)
例如我的一个项目文件结构如下
== |-- com | `-- Test.class `-- manifest.mf
那配置文件就应该加上这一行 Main-Class:com.Test
这里有一点需要注意的是,加上上面那一行后,还需要按回车换行,不然在生成jar包的时候会出问题,什么原因我也不知道。。。。
生成ja ...
一次在部署一个php应用时,遇到
<?=?> 方式输出变量无效的问题。
后来发现要把 php.ini中 short_open_tag 值改为 On 就好了
- 2009-12-02 15:51
- 浏览 1554
- 评论(0)
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all</Directory>
将这里的 Deny from all
修改为 Allow from all
另外,确定
<IfModule dir_module> DirectoryIndex index.html index.shtml index.cgi index.php index.phtml index.php3</IfMod ...
- 2009-04-16 16:03
- 浏览 2860
- 评论(0)
服务器参数说明及查看,设置方法查看参数:SHOW VARIABLES;设置参数:SET GLOBAL 参数名称=value;如设置
最大连接数为:SET GLOBAL max_connections=1000。
用shell>mysqld-help这个命令可以得到一张所有mysql选项和可配置变量的表.输出以下信息:possible variables for option--set-variable(-o) are:back_log current value:5 //要求mysql能有的连接数量.back_log指出在mysql暂停接受连接的时间内有多少个连接请求可以被存在堆 ...
- 2009-03-21 13:30
- 浏览 1507
- 评论(0)
用rmp安装MySQL一切正常,使用源码安装后,当我用./vadduser添加新用户的时候,就出现了./vadduser: error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory
这里只要将MYSQL目录下lib/mysql/libmysqlclient.so.15.0.0 复制或软链接到/usr/lib/libmysqlclient.so.15即可
- 2009-03-21 11:57
- 浏览 1141
- 评论(0)
今天打开VM linux 发现访问PHP文件提示下载,我用Centos5.2 组建的一个LAMP
(linux+apache+mysql+php)。前几天访问正常 在网上查到一些知识出现这种问题的
只有一个可能,PHP没有正常被解析。解决的思路有以下几种:
1,先查看apachep安装目录(如果是RPM包安装一般在/etc/httpd/modules目录下)是
不是有libphp5.so这个模块(5这里指的是PHP版本号)如果有表明PHP是正常安装了
2,查看apchen配置文件httpd.conf 有没有 LoadModule php5_module
module ...
- 2009-03-20 19:47
- 浏览 2777
- 评论(0)
在 (Fedora | RedHat)中如果手動編譯 Apache 及 PHP 時,在 Apache 啟動時卻無法加載 libphp(4 | 5).so。
錯誤訊息:cannot restore segment prot after reloc: Permission denied
解決方式:
1. 使用 chcon 指令改 libphp(4 | 5).so 預設的安全性政策。(建議使用)
[root@GR00 root]# chcon -t texrel_shlib_t /usr/local/httpd-2.2.4/modules/libphp(4|5).so
- 2009-03-20 19:22
- 浏览 1300
- 评论(0)
安装:
apache:
到apache.org去下载apache
# tar -zxvf httpd-2.2.11
# cd httpd-2.2.11
# ./configure --prefix=/usr/local/apache --enable-so --enable-rewrite
# make
# make install
php:
在如下页面下载php的for Linux 的源码包
http://www.php.net/downloads.php ;
# tar -zxvf php-5.2.9.tar.gz
# cd ...
- 2009-03-20 16:21
- 浏览 992
- 评论(0)
在linux上安装有些东西时会出现 Permission denied 的情况:以下就是解决它的办法之一编辑/etc/selinux/config,找到这段:# This file controls the state of SELinux on the system.# SELINUX= can take one of these three values:# enforcing - SELinux security policy is enforced.# permissive - SELinux prints warnings instead of enforcing.# disabled ...
- 2009-03-19 19:40
- 浏览 1124
- 评论(0)
装了 php 之后 重启动apache的时候出现这个问题 httpd: Syntax error on line 53 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: /usr/local/apache2/modules/libphp5.so: cannot restore segment prot after reloc: Permission denied
第一:检查权限,希望你用ROOT用户试试。第二: /usr/local/a ...
- 2009-03-19 19:38
- 浏览 1703
- 评论(0)
--prefix=/program/mysql 安装路径
--localstatedir=/var/lib/mysql 数据库文件存放路径
--with-comment=Source
--with-server-suffix=-Community
--with-mysqld-user=mysql
--without-debug
--with-big-tables
--with-charset=gbk utf8
--with-collation=gbk_chinese_ci utf8_unicode_ci
--with-extra-charsets=all
- ...
- 2009-03-19 14:56
- 浏览 5938
- 评论(0)