@OverWrite BlogJava
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
128 随笔 :: 0 文章 :: 29 评论 :: 0 Trackbacks
<
2008年3月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(3)
给我留言
查看公开留言
查看私人留言
随笔分类
Ajax/html(17)
(rss)
IT新闻(10)
(rss)
Java(20)
(rss)
Php(1)
(rss)
心情(7)
(rss)
旅游风景(1)
(rss)
系统相关(4)
(rss)
设计模式(1)
(rss)
随笔档案
2012年8月 (1)
2012年7月 (1)
2008年7月 (1)
2008年6月 (7)
2008年5月 (1)
2008年4月 (3)
2008年3月 (8)
2008年2月 (10)
2008年1月 (15)
2007年12月 (3)
2005年11月 (3)
2005年10月 (2)
友情链接
dojo圈子-JAVAEYE
Java开源项目大全
搜索
最新评论
1. re: jQuery源码详解(转)
是
--是
2. re: 利用google侦测网站漏洞工具Goolag Scanner
貌似翻了墙也进不去呃……
--REZ
3. re: jQuery源码详解(转)
不错
--阿道夫
4. re: jQuery源码详解(转)
dsad
--ss
5. re: 使用Dojo的痛苦经历(转载)[未登录]
@zhzg
那你要自己试试。
--evan
阅读排行榜
1. 如何调整eclipse字体大小(43754)
2. 一个不错的log4j.properties例子(28658)
3. getMethod()和invoke()方法应用(22306)
4. Dojo入门教程 Dojo Quick Start(12666)
5. 轻松搭建resin开发平台--Resin配置详解(11051)
评论排行榜
1. 利用google侦测网站漏洞工具Goolag Scanner(7)
2. ajax级联菜单实例(5)
3. Dojo入门教程 Dojo Quick Start(4)
4. jQuery源码详解(转)(4)
5. 童丽版 经典老歌-月满西楼(2)
轻松搭建resin开发平台--Resin配置详解
Caucho Resin提供了最快的jsp/servlets运行平台。它支持Servlet,XSL Filtering6并且具备XSLT和XPath1.0引擎。为方便开发人员能更方便的搭建一个易用的开发平台,将Resin的配置案例如下:
本文resin采用版本为:
Resin 2.1.13
本文所有代码均已测试通过
我的工程目录结构如下:
/(root)
|--resin(resin根目录)
| |--bin
| |--conf
| | |--resin.conf(resin配置文件 今天的主角)
| |--lib
|--src
|--java(用于放置java源文件)
|--test(测试文件目录)
|--webapp(web应用的根目录,将来doc-dir会指向这里)
|---WEB-INF
|------classes
|------lib
|------web.xml(web配置文件)
|------applicationContext.xml(其他配置文件)
以下是resin.conf文件源码
<
caucho
.com
>
<
log
id
='/logs'
href
='stderr:'
timestamp
='[%Y-%m-%d
%H:%M:%S.%s]'
/>
<
http-server
error-log
="logs/errors.log"
>
<
doc-dir
>
../src/webapp
</
doc-dir
>
<!--
the http port
-->
<
http
port
='82'/>
<host id
=''>
<web-app id
='/'>
<work-dir
>
../../build/work
</
work-dir
>
<
temp-dir
>
../../build/tmp
</
temp-dir
>
<
cache-mapping
url-pattern
="/*"
expires
="2"
/>
<
class-update-interval
>
100000000
</
class-update-interval
>
<
jsp
jsp-update-interval
="1s"
/>
<
classpath
id
='WEB-INF/classes'/>
</web-app
>
</
host
>
</
http-server
>
</
caucho.com
>
web.xml源代码
<?
xml version="1.0" encoding="ISO-8859-1"
?>
<!
DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"
>
<
web-app
>
<
display-name
>
Acme Corp
</
display-name
>
<
filter
>
<
filter-name
>
webwork
</
filter-name
>
<
filter-class
>
com.opensymphony.webwork.dispatcher.FilterDispatcher
</
filter-class
>
</
filter
>
<
filter-mapping
>
<
filter-name
>
webwork
</
filter-name
>
<
url-pattern
>
/*
</
url-pattern
>
</
filter-mapping
>
<
listener
>
<
listener-class
>
org.springframework.web.context.ContextLoaderListener
</
listener-class
>
</
listener
>
<
welcome-file-list
>
<
welcome-file
>
index.jsp
</
welcome-file
>
<
welcome-file
>
default.jsp
</
welcome-file
>
<
welcome-file
>
index.html
</
welcome-file
>
</
welcome-file-list
>
<!--
This typically isn't required, as the taglib is included in webwork.jar.
If you really need a taglib configuration within web.xml, copy webwork/src/java/META-INF/taglib.tld
to the WEB-INF directory as webwork.tld.
-->
<!--
taglib>
<taglib-uri>webwork</taglib-uri>
<taglib-location>/WEB-INF/webwork.tld</taglib-location>
</taglib
-->
</
web-app
>
posted on 2008-03-05 16:12
vesung
阅读(11051)
评论(0)
编辑
收藏
所属分类:
Java
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
相关文章:
HttpClient简介
如何调整eclipse字体大小
你属于那个版本的程序员?
ajax级联菜单实例
关于java递归调用内存泄露
Java作用域描述符的区别
java序列化的控制
转摘:Tomcat中配置和使用JNDI
DataSource接口,Connection pooling(连接池),分布式事务,RowSet介绍
JDBC 2.0概述
Powered by:
BlogJava
Copyright © vesung