jsp文件放在tomcat\webapps\网站目录
bean放在tomcat\webapps\网站目录\classes\bean包名\
还要修改tomcat\conf\server.xml
在这个文件中加入        <Context path="/上面写的网站目录" 
                 docBase="webapps/上面写的网站目录" 
                 crossContext="true"
                 debug="0" 
                 reloadable="true" 
                 trusted="false" > 
        </Context>
移植过来应该不会出错。