Java EE Tutorial #3 – JPA Database Connection Part 1 In this Video I show you how to use Databases in Java EE. We will work with JPA and Glassfish JDBC …
Original source
Java EE Tutorial #3 – JPA Database Connection Part 1 In this Video I show you how to use Databases in Java EE. We will work with JPA and Glassfish JDBC …
Original source
5 responses to “Java EE Tutorial #3 – JPA Database Connection Part 1”
i have the following error when i ping
com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource Please check the server.log for more details
at 3:18 it throws a 500 error, java.lang.IllegalStateException: getOutputStream() has already been called for this response
Thanks Dennis! Your tutorial is really great! Keep it up
Great tutorial. I'm pasting here the sql script to generate the table used in the video, in case anyone needs it:
create table t_user(
id INTEGER(10) NOT NULL AUTO_INCREMENT,
username VARCHAR(45) NOT NULL,
PRIMARY KEY(id)
) ENGINE=INNODB;
How can you generate controllers from these classes with JPA?