I am developing a hibernate application that connects to a MySQL database.
The customers would like to only specify a connection string, ie:
jdbc:mysql://username:passwd@server:port/db_name
However, Hibernate will not connect using just this string. It also wants the username and password connection properties set. Is there any way around this?
Thanks