您的位置:首页 > 编程语言 > Java开发

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

2013-01-30 15:00 309 查看
修改模板:

找到com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar,至少格式是前缀是一样,每个版本不一样,我的是myeclipse10.

然后用war软件打开。

新建一个Struts2_jsp.vtl

Struts2_jsp.vtl

-------------------------------------

Jsp代码


<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>

<%@ taglib prefix="s" uri="/struts-tags"%>

<%

String titleString = "My Struts2 JSP Template";

String footerString= "My Struts2 JSP Template";

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

%>

<html>

<head>

<title><%=titleString%></title>

</head>

<body>

<center><h1><%=titleString%></h1></center>

<hr>

<%=new Date()%><br>

Actionerror:<s:actionerror/><br>

Actionmessage:<s:actionmessage/><br>

<hr>

<div style="height:100%;border:1px solid #6699FF">

<s:form action="myAction" method="post">

<s:textfield name="user" label="UserName" value="default value" size="50"></s:textfield>

<s:submit value="Submit"></s:submit>

</s:form>

</div>

<hr>

<center><%=footerString%></center>

</body>

</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代码


<template

context="com.genuitec.eclipse.wizards.jsp"

script="templates/jsp/Struts2_jsp.vtl"

name="Standard JSP using Struts 2.X with a form"/>

保存之后,在放到war打开的jar一样的地方那个,覆盖里面的文件。

然后启动myeclipse,点new/jsp 然后就能选择刚才的模板了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: