像太阳一样充满热情地生活!
今天很幸运,又能在凉爽的风中载你回家,一路上讲的最多的就是最近代码总是写不出来,看你那么的着急与无奈,我的安慰也就是那几句,重重复复,不知道对于你来说有没有起到一点安慰的作用。你心里那么的烦闷,我了解,想让你好好地发泄发泄,这样心里或许会好受一些,可是你打在身上的巴掌和拳头是那么的温柔。你说我是一个非常不幸的人,经常要帮你写代码、陪你吃饭、陪你加班、听你的唠叨还有还要做你的出气筒,可是我要说,我是个幸运的人,很幸运与你相遇,我愿意帮你写代码、陪你吃饭、陪你加班、听你的唠叨还有还要做你的出气筒,我并不吃亏,因为做这些事情的时候我很快乐!
拿什么挽留你我的LittleFool!


本来一直在准备Java认证考试,但是总是不能坚持长久,学习进度象蜗牛一样慢慢爬行,现在好了,部长直接要求我们踊跃参加sun的scjp认证考试,对于我这种惰性很强的人来说,有了压力反而是件好事情,夜里零点睡觉,早上6点起床看书+早读。
下午下了班,好好的吃他一顿,然后继续上自习,还真有点大学时的感觉。晚上下了自习,吹着小风,听着音乐,和自己心爱的天使散步,充实的一天,我要努力是每一天都想现在一样充实!向着幸福的彼岸奋力前行!!!
微风中载着你,有点凉但是很舒服,累了、疲倦了,我想用温暖的后背作为你的枕头,让你小憩!
|
标签:情感 |
Always look forward to the night,always look forward to the arrival of the weekend
that let me have time to look sentimental.
Busy day's work
Although you are close at hand, but feel far away in the End of the World.
Why is so difficult to see your side,anyway tomorrow is another day.
Keep trying! Everything will be ok!
|
标签:情感 |
Never give up never
abandoned!
Customary to be with you around!
---【To LF】
Out of all of the people in the world
I am so lucky
You make my days brighter.
You make me happy.
You give me many reasons to smile everyday.
It's great to know that
there's someone special like you out there
You really stand out in the crowd and
make the world a better place to live in.
----- 【LF】
手动修改迅雷相关(广告)文件
1. 清除顶部小广告
ADServer=
PVServer=
ADCountingServer=
HomePage=
2. 屏蔽右侧热门推荐
3。关闭迅雷娱乐广告画面和咨询弹出窗口
特别提示:
以下是MSSQL的数据库连接池的配置文件部分:
<Context path='/webbooks(项目名)' docBase='F:\eclipse3.0
\workspace\webbooks\WebRoot'
debug='0'
<Resource name='jdbc/books(数据库)' auth='Container'
type='javax.sql.DataSource'/>
<ResourceParams name='jdbc/books'>
<parameter>
<name>factory</name>
<value>org.apache.commons.dbcp.BasicDataSourceFactory</value>
</parameter>
<parameter>
<name>username</name>
<value>登陆数据库用户名</value>
</parameter>
<parameter>
<name>password</name>
<value>数据库登陆密码</value>
</parameter>
<parameter>
<name>driverClassName</name>
<value>com.microsoft.jdbc.sqlserver.SQLServerDriver</value>
</parameter>
<parameter>
<name>url<
<Server>元素
它代表整个容器,是Tomcat实例的顶层元素.由org.apache.catalina.Server接口来定义.它包含一个<Service>元素.并且它不能做为任何元素的子元素.
<Server port='8005' shutdown='SHUTDOWN' debug='0'>
1>className指定实现org.apache.catalina.Server接口的类.默认值为org.apache.catalina.core.StandardServer
2>port指定Tomcat监听shutdown命令端口.终止服务器运行时,必须在Tomcat服务器所在的机器上发出shutdown命令.该属性是必须的.
3>shutdown指定终止Tomcat服务器运行时,发给Tomcat服务器的shutdown监听端口的字符串.该属性必须设置
<Service>元素
该元素由org.apache.catalina.Service接口定义,它包含一个<Engine>元素,以及一个或多个<Connector>,这些Connector元素共享用同一个Engine元素
<Service name='Catalina'>
<Service name='Apache'>
第一个<Service>处理所有直接由Tomcat服务器接收的web客户请求.
第二个<Service>处理所有由Apahce服务器转发过来的Web客户请求
1>c