1.首先確保自己安裝了apache tomcat.Tomcat 6.0的為http://www.duote.com/soft/10004.html
2.在tomcat的webapp檔案夾下建立一個檔案夾MyWeb(名字任意取,來存放網站內容)。並在MyWeb下面建立一個檔案夾WEB-INF,裡面放上web.xml,web.xml的內容為:
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2eehttp://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>Welcome Tomcat+Dreamweaver Test</display-name>
<description>
Welcome to Tomcat+Dreamweaver
</description>
</web-app>
3.在Dreamweaver中點擊Site->Manage sites,輸入網站的名字,點擊next後,選擇Yes,I want use a server technology(JSP)。在Where on your computer do you want to store your files?輸入*\Tomcat 6.0\webapps\MyWeb\(*是指你的路徑)。點擊“Next”,where folder.....?中輸入同上面一樣的路徑。在What URL would you ,to browse to the root of your file?輸入http://localhost:8080/MyWeb。
經曆如上步驟,就建立好了。