index.jsp
<%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %>
<c:url var="readUrl" value="test">
<c:param name="inputFile" value="testFile.txt"/>
</c:url>
<c:url var="writeUrl" value="test">
<c:param name="outputFile" value="testFile.txt"/>
</c:url>
<html>
<head>
<title>ioc-appconfig Demo</title>
</head>
<body>
<h1>ioc-appconfig Demo</h1>
<a href="${writeUrl}">Write</a> a configuration file.<br>
<a href="${readUrl}">Read</a> a configuration file.<br>
</body>
</html>