- 浏览: 258963 次
- 性别:
- 来自: 未定
最新评论
-
zl544434558:
最后一行</filter> 多余的
Springmvc 乱码问题 -
imknown:
方法有效,感谢博主!
Springmvc 乱码问题 -
notafreak:
方法有效,感谢博主
Springmvc 乱码问题 -
linvar:
ligangdufs 写道 what about resin ...
Springmvc 乱码问题 -
ligangdufs:
what about resin
Springmvc 乱码问题
文章列表
1.页面文件在windown的编辑器下,当保存文件为utf8格式时,可能会自动增加BOM字符,而导致在浏览器显示的页面会多出奇怪的一行空白.
2.
vsFTPd是FTP服务器软件(very secure ftp daemon)
vsFTPd的编译安装比较特别,并不是按照一般常规的configure,make,make install
(1).如果你想修改编译设置选项,修改builddefs.h文件吧
(2).执行make命令,这将得到vsftpd这个二制文件
(3).vsftpd需要"nobody"这个linux用户,需要/usr/share/empty这个文件夹
如果可以匿名登录,则需要"ftp"这个linux用户,这个用户还必须有个合法的家目录,但是这个家目录并不是被ftp所拥有或可写的.
(4) ...
1.nginx的安装
依赖包:(需要源码, 而不是编译后的)
pcre(perl-compatible regular expression) lib
openSSL,md5,shal,zlib
./configure --help有许多选项可以选择,多半又要有点经验或使用默认项
--prefix=/opt/nginx \
--with-http_ssl_module \
--with-http_flv_module \
--with-http_gzip_static_module \
--http-log-path=/var/log/nginx/access.log \
...
1.mysql在linux下表名是区分大小写的,但是列又不区分大小写.而在win下是不区分大小写的
2.mysql按日期排序时(倒序),空值默认是在最前面的,当需要将它们放在最后时,可以使用ordey by IFNULL(finish_date, '2100-01-01')
3.mysql删除InnoDB大表时,且表中有外键时可能会很慢,这时可以使用truncate table
4.java连接mysql的url:
jdbc:mysql://localhost:3306/db_name?useUnicode=true&characterEncoding=utf8
如果是在xml中定 ...
今天在Ubuntu上安装了chrome,但是并不支持flash,也没有自动安装的选项
我记得firefox好像也没有自动安装,
所以我下载了flash的linux版本,解压后有个libflashplayer.so
firefox的安装可以有好几个位置,
比如~/.mozilla/plugins/libflashplayer.so,
/usr/lib/mozilla/plugins/
/usr/lib/firefox-addons/plugins/
chrome的安装位置是/opt/google/chrome
我发现安装目录下也有个.so,我条件反映就将libflashplayer.so也放在安 ...
apache的编译安装主要是要选择怎样编译模块,需要哪些模块,是编译成shared呢还是static.这个需要一定的经验,最保险的就是选择大部分shared,有这个configure选项.
apache的运行停止
$APACHE_HOME/bin/apachectl -k start|stop
apache的配置文件httpd.conf
apache有一个AddDefaultCharset选项,可以强制将网页内容编码为指定格式
这样容易产生乱码,可以注释掉,由网页的编码设置来决定编码
ServerRoot "/home/outer/opt/apache2"
Listen ...
首先来一张subversion的架构图
1.subversion的安装主要是要解决依赖的类库:
1).libapr, libapr-util(apache portable runtime)
layer that allows suberversion client and server to run on different OS.
这两个lib如果单独装的话(还修改安装路径), 可能出现错误.
所 ...
以前用过ibatis2,但是听说ibatis3有较大的性能提升,而且设计也更合理,他不兼容ibatis2.尽管ibatis3还是beta10的状态,但还是打算直接使用ibatis3.0,
ibatis3.0应该更简单高效.最近还自己写了个ibatis3.0与spring集成的bean,运行还正常,还自鸣得意了一番,但是当独立使用ibatis时,在事务管理这个方面还是出现不少问题,所以还是打算再认真研究一番ibatis3.0
1.SqlSessionFactory
每个ibatis应用都应该只有一个SqlSessionFactory的实例对象,所以一般设置为static属性或者使用spring管 ...
想想自己,总是处于忙碌工作或郁闷难受之中.工作时,起早摸黑,不知疲惫,最终是顶不了多少天就开始处于难受之中,大脑没法放松.
郁闷难受时,睡觉是个打发时间的方法.最终发现,为什么不停下来思考为什么会出现这种状况呢.
很多时候,好像都不想让自己去面对自己的弱点,总是埋头做事,希望能用这种方式来减少思考关于自己的事.程序员都有自闭倾向吗?
...待思考
1. Android is a software stack for mobile devices that includes an operating system, middleware and key applications. The Android SDK provides the tools and APIs necessary to begin developing applications on the Android platform using the Java programming language.
2. Application Fundamentals:
An ...
1. Argument passing:
When known to the interpreter, the script name and additional arguments thereafter are passed to the script in the variable sys.argv, which is a list of strings. Its length is at least one; when no script and no arguments are given, sys.argv[0] is an empty string. When the scr ...
1. He's feeling a bit fragile after last night's party
2. It is so in theory
3.
一月:January 简写 Jan
二月:February 简写 Feb.
三月:March 简写 Mar.
四月:April 简写 Apr
五月:May 简写 May
六月:June 简写 Jun.
七月:July 简写 Jul.
八月:August 简写 Aug
九月:September 简写 Sep. / Sept.
十月:October 简写 Oct.
十一月:November 简写 Nov.
十二月:December 简写 ...
1. Your objects might not get garbage collected.
Garbage collection is not destruction.
Garbage collection is only about memory.
2. Within a class, the variables are initialized before any methods can be called--even the constructor.
3. Within a interface, the fields are default static and fi ...
1. An object has state, behavior and identity.
2. Indeed, one of the challenges of object-oriented programming is to create a one-to-one mapping between the elements in the problem space and objects in the solution space.
3. In a good object-oriented design, each object does one thing well, but doe ...
something from books
- 博客分类:
- 杂七
1. A learning experience is what you get when you don't get what you want.
2. "He gave man speech, and speech created thought, which is the measure of the Universe" --Prometheus Unbound,Shelley