在MyEclipse for mac 中增加、修改JSP模板

來源:互聯網
上載者:User
修改模板: 
找到com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar,至少格式是首碼是一樣,每個版本不一樣,我的是myeclipse10. 
然後用war軟體開啟。 
建立一個Struts2_jsp.vtl 

Struts2_jsp.vtl 
------------------------------------- Jsp代碼  

  1. <%@ page language="java" import="java.util.*"  pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>  
  2. <%@ taglib prefix="s" uri="/struts-tags"%>  
  3. <%  
  4.     String titleString = "My Struts2 JSP Template";  
  5.     String footerString= "My Struts2 JSP Template";  
  6.     String path = request.getContextPath();  
  7.     String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  8. %>  
  9. <html>  
  10.     <head>  
  11.         <title><%=titleString%></title>  
  12.     </head>  
  13.     <body>  
  14.         <center><h1><%=titleString%></h1></center>  
  15.         <hr>  
  16.         <%=new Date()%><br>  
  17.         Actionerror:<s:actionerror/><br>  
  18.         Actionmessage:<s:actionmessage/><br>  
  19.         <hr>  
  20.         <div style="height:100%;border:1px solid #6699FF">  
  21.             <s:form action="myAction" method="post">  
  22.                 <s:textfield name="user" label="UserName" value="default value" size="50"></s:textfield>  
  23.                 <s:submit value="Submit"></s:submit>  
  24.             </s:form>  
  25.         </div>  
  26.         <hr>  
  27.         <center><%=footerString%></center>  
  28.     </body>  
  29. </html>  

然後把這個檔案放到jar裡面的com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar\templates\jsp 
然後回到com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar最外面的,看見templates.xml 
解壓出來,然後在<!-- JSP templates -->的後面增加如下代碼: Xml代碼  

  1. <template  
  2.         context="com.genuitec.eclipse.wizards.jsp"  
  3.         script="templates/jsp/Struts2_jsp.vtl"  
  4.         name="Standard JSP using Struts 2.X with a form"/>  

儲存之後,在放到war開啟的jar一樣的地方那個,覆蓋裡面的檔案。 
然後啟動myeclipse,點new/jsp   然後就能選擇剛才的模板了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.