I have been developed a web application using java servlet at server side and html ajax javascript at client side.
A web application is already running at production server and now i have to integrate the newly developed application.
should i just give the link on the homepage of existing application?
but the newly developed application has it’s own web.xml and also the existing application must be having web.xml whether i am not sure how to procedd. please give me any idea to integrate
what should i do for the integration.
As far as I can get, you want to give a link in the home page of your existing web application in production pointing to your new web app which you developed.
Your new web app is independent application, with its own web.xml, you can deploy it by building a separate war file and deploy it to your server.
For changing the link in the home page of your existing web application, if it is a plain html page or if it is a JSP page, then change the link in home page and then you can do hot deployment. Simply deploy the war file again. your server will automatically replace the html and jsp pages.