tomcat服務器配置html
第一步:Window->Preferences->Server->Runtime Environments,點擊Add,選擇對應要建立的tomcat服務器版本號,新建一個local server ,配置本地tomcat地址,和jdk服務。java
這樣系統裏就存在tomcat服務器了,開始新建工程,經過新建dynamic web project 示例以下:web
新建工程以後 ,就會發如今選項卡視圖部分service下 存在你剛纔的項目名稱tomcat
jsp頁面調試服務器
若是編輯的jsp頁面代碼jsp
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ""> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> </head> <body> <% String world = request.getParameter("world"); HelloWorld hello = new HelloWorld(); String helloworld = hello.sayHello(world);%> <%=helloworld %> </body> </html>
若是須要new一個類的實例出來 必須在開頭引入類的包 如例子中的(HelloWorld)類ui
編譯便可經過實現效果 ,否則會出現 HelloWorld類spa
HelloWorld cannot be resolved to a type 錯誤調試