假设你的*。JSP文件放在c:/learn目录下,你可以在Server.xml的 Engine 元素中加入
<!-- Define the Learn virtual host -->
<Host name="learn.com.cn" debug="0" appBase="">
<Valve className="org.apache.catalina.valves.AccessLogValve"
directory="logs" prefix="learn_access_log." suffix=".txt"
pattern="common"/>
<Logger className="org.apache.catalina.logger.FileLogger"
directory="logs" prefix="learn_log." suffix=".txt"
timestamp="true"/>
<Context path=""do
cBase="c:/learn" debug="0" />
</Host>
在你的HOSTS文件中加入127.0.01 learn.com.cn
访问它时用 http://learn.com.cn
或者在原有的HOST元素下加入
<Context paht="/learn"do
cBase="c:/learn" debug="0" />
访问它时用http://localhost:8080/learn
"提示找不到类 tax.TaxRate" 是因为你不要在 WEB-INF/CLASSES 下建立 tax 目录,并把
它放到tax目录下。因为TaxRate 这个bean 是在 tax 包(Package)下的。