Hi I have created a website using servlet and JSP. There are three type of users on the website namely administrator, student and teacher. Now I need to install this website on all the systems but the database has to be the same. Now how I should I distribute this website on all the systems. Plz help me............
This depends that how you access your database. For example if you are using database MySql then you might be write connection url to connection to the Database as
jdbc:mysql://localhost:3306/database_name (If database is on lical computer) If you wants that database should be accessed by all the user then install the database on the separate machine and connect it to your Network (LAN) and specify the database machine IP address in place of local host
like-- jdbc:mysql://192.168.115.584:3306/database_name