I had design my User Interface in dreamweaver and I hope to include the User Interface that I had design into eclipse for google app engine java, is it possible to do so?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can put all HTML/CSS/Javascript into the “war” or “web” directory of the App Engine project (next to the index.jsp or index.html which is probably already there). Those files will be uploaded and served as static files when deployed.
I assume that you will have to modify at least some of those files, though, to make them “active”. For example by turning the HTML into JSP and wiring them up with some servlets that do the server-side processing.