check the line while connecting to server
service.setTicketDAO(new TicketDAO("mysql.jdbc://localhost/ticketdb1","root",""));
It should be
service.setTicketDAO(new TicketDAO("jdbc:mysql://localhost:3306/ticketdb1","root",""));
Check the database url, I changed it.
here 3306 is default mysql port number change if different in your case.
Also you have to load the drivers for mysql connector using
Class.forName("com.mysql.jdbc.Driver");
and need to include mysql-connector.jar file.
Hope it'll help.