JSF Hello World Project in Eclipse IDE JSF Tutorial Part 3

How to make Eclipse IDE supports JSF. This tutorial shows how you can Create a JSF Hello World project in Eclipse IDE. Start a normal Dynamic Web Project in Eclipse IDE After Creating the project. Go the properties of Project. 2.1 Select Project Facets 2.2 Select JavaServer Faces 2.3 Select Further Configuration Available 3.1 Select …

Continue reading

How to connect to remote MySql database from NetBeans

This tutorial shows java program to connect to remote MySql Database from NetBeans IDE. Include the MySql jar in classpath of the project. You can download MySql jar here. Update your Database information in the program. DB_Connection.java package DB_Connection; import java.sql.Connection; import java.sql.DriverManager; public class DB_Connection { public static void main(String[] args) { DB_Connection obj_DB_Connection=new …

Continue reading