mardi 31 juillet 2018

How to manage resource of web application without JSP and only html

I want to make up web application without JSP only use html and html templates.

main page has only one tag to wrap whole html.

main.jsp

<html>
    <head>
        <!-- css -->
    </head>
    <body>
        <div id="wrap">
            <!-- insert html code on here -->
        </div>
        <!-- js library -->
    </body>
</html>

page operation sequence is like below.

1.load main.jsp

2.load html and javascript dynamically

And I want to recycle html and templates.

What is the good method to manage html on this configuration?? just separate with folders?? or other method?? Did you know about some web pages that solve this problems??

please help.




Aucun commentaire:

Enregistrer un commentaire