Do not see changes made in HTML file in Eclipse -
Do not see changes made in HTML file in Eclipse -
i have created simple login.html file in dynamic web project + maven + glassfish in eclipse.
!doctype html> <html> <head> <meta charset="utf-8"> <title>login page</title> <style type="text/css"> form {text-align: center} </style> </head> <body> <form action="loginservlet" method="post"> username:<input type="text" name="name" value=""/><br> password:<input type="password" name="password" value=""/><br> <input type="submit" value="enter"/> <input type="reset" value="clear"/> </form> </body> </html> i launch login.html file run -> run on server , looks ok. when changed in html , seek run on server did not see changes. seek mvn clean, mvn install. should see changes in html file when run on server? (in preview see changes)
when launch *.html file on server opens in eclipse browser. see changes need click on greenish triangle "go selected url" , page updated.
html eclipse
Comments
Post a Comment