1) Create a servlet class which has the doGet() implemented to read the properties file using Properties#load(), stores it in the request scope using HttpServletRequest#setAttribute(), forwards the request to a JSP file using RequestDispatcher#forward(). Finally map this servlet in web.xml on an url-pattern like /propertieseditor.
Properties properties = new Properties();
properties.load(Thread.currentThread().getContextClassLoader().getResourceAsStream("file.properties"));
request.setAttribute("properties", properties);
request.getRequestDispatcher("propertieseditor.jsp").forward(request, response);
2) Create a JSP file which uses JSTL c:forEach to iterate over the properties key-value pairs, generating a HTML input type="text" element everytime.
<form action="propertieseditor" method="post">
<c:forEach items="${properties}" var="property">
${property.key} <input type="text" name="${property.key}" value="${property.value}"><br>
</c:forEach>
<input type="submit">
</form>
3) Add a doPost() method to the servlet as created in 1) and write logic which gathers all property key-value pairs from the request parameter map and stores it back in the file.
Properties properties = new Properties();
Map<String, Object> parameterMap = request.getParameterMap();
for (Entry<String, Object> entry : parameterMap.entrySet()) {
properties.setProperty(entry.getKey(), entry.getValue());
}
properties.store(new FileOutputStream(new File(
Thread.currentThread().getContextClassLoader().getResource("file.properties").toURI())));
response.sendRedirect("propertieseditor.jsp");
Finally use the propertieseditor by http://localhost/webapp/propertieseditor. Good luck.