Hi group,
We have migrated from
struts 1.0 to struts 1.1. For a new requirement we are trying to implement a module(let's say M1). We have template files already written in default module which we want to reuse in M1.
The template file in new module looks like
<%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
<template:insert template="/common/template.jsp" >
<template
ut name="header" content="/common/header.jsp" />
<template
ut name="menu" content="/common/menu.jsp" />
<template
ut name="body" content="M1/components/test.jsp" />
</template:insert>
When i try to access this
jsp it gives me page not found error.
I want to reuse the template files (tempate.jsp, header.jsp, menu.jsp).
Any suggestion to resolve this problem.
Thanks
Prateek