Ciao a tutti,
Devo far girare un progetto che ho su netbeans in localhost usando come server tomcat, la mia domanda è:
Come posso far girare il database in localhost? se lo avvio con mysqlWorkbench sulla porta 8080 e poi faccio partire il progetto da netbeans giustamente mi dice che non è stato possibile avviare tomcat perchè la porta è occupata da un altro processo. Come posso fare quindi?
questo è il codice che uso per connettermi al database in localhost
codice:public static PreparedStatement getPreparedStatement(String sql) throws ClassNotFoundException, SQLException{ PreparedStatement ps=null; Class.forName("com.mysql.jdbc.Driver"); String url= "jdbc:mysql://localhost/myDB?"; String user= "root"; String pass= ""; Connection con= DriverManager.getConnection(url, user, pass); ps=con.prepareStatement(sql); return ps; }
e questo è un database di esempio a cui vorrei connettere il sito:
codice:CREATE DATABASE IF NOT EXISTS myDB; use myDB; CREATE TABLE IF NOT EXISTS myDB.Tabella1( id int primary key, campo1 int not null, campo2 int not null, campo3 int not null ) ENGINE=InnoDb;
Grazie a tutti per il vostro aiuto


Rispondi quotando