I am new to Spring MVC Hibernate and have loaded a sample project into my eclipse IDE and when I run the project it gives one warning and no errors but I do get a 404 browser error. The warning is as follows:
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.j2ee.server:SpringHibernateExample' did not find a matching property.
Now being new I don't know if this has anything to do with the 404 error or not. I have the MySQL database and employee table setup correctly. I have tested the MySQL and it works. To access the database I have setup the application.properties with the following code:
jdbc.driverClassName = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://localhost:3306/employee
jdbc.username = root
jdbc.password = P@ssword1
hibernate.dialect = org.hibernate.dialect.MySQLDialect
hibernate.show_sql = true
hibernate.format_sql = true
Beyond this I am stuck. If anyone has any ideas that would be great!
After asking this question I really need to learn how to debug Spring MVC applications. I have been doing ASP for 12 year and have no problems. Any help in Spring MVC would give me a good start on my own.