修改模板:
找到com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar,至少格式是前缀是一样,每个版本不一样,我的是myeclipse10.
然后用war软件打开。
新建一个Struts2_jsp.vtl
Struts2_jsp.vtl
-------------------------------------
然后把这个文件放到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 -->的后面增加如下代码:
保存之后,在放到war打开的jar一样的地方那个,覆盖里面的文件。
然后启动myeclipse,点new/jsp 然后就能选择刚才的模板了。
找到com.genuitec.eclipse.wizards_9.0.0.me201108091322.jar,至少格式是前缀是一样,每个版本不一样,我的是myeclipse10.
然后用war软件打开。
新建一个Struts2_jsp.vtl
Struts2_jsp.vtl
-------------------------------------
<%@ 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 -->的后面增加如下代码:
<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 然后就能选择刚才的模板了。
使用MyEclipse创建Struts2 JSP模板
本文详细介绍了如何在MyEclipse中创建并使用Struts2 JSP模板,包括修改模板文件、配置及应用过程。
3049

被折叠的 条评论
为什么被折叠?



