Recent Tips and News on Java EE 6 & GlassFish:
GlassFish
•
An Eclipse / GlassFish / Java EE 6 Tutorial
•
Using JAX-RS with JDeveloper and Weblogic
•
GlassFish 3 and Oracle 10g XE on Ubuntu Linux 9.10
•
Grizzly 1.0.38 has been released
•
| Showing entries 1 to 6 |
Recent Tips and News on Java EE 6 & GlassFish:
GlassFish
•
An Eclipse / GlassFish / Java EE 6 Tutorial
•
Using JAX-RS with JDeveloper and Weblogic
•
GlassFish 3 and Oracle 10g XE on Ubuntu Linux 9.10
•
Grizzly 1.0.38 has been released
•
CREATE TABLE session_role (
Session_sessionId bigint(20) NOT NULL,
activeRoles_roleId varchar(255) NOT NULL,
PRIMARY KEY(Session_sessionId,activeRoles_roleId),
UNIQUE KEY activeAccounts_actorId (activeRoles_roleId),
KEY `FK38CC06CCF5B03D50` (Session_sessionId),
KEY `FK38CC06CC4085AE4` (activeRoles_roleId),
CONSTRAINT `FK38CC06CC4085AE4` FOREIGN KEY (activeRoles_roleId)
REFERENCES role(roleId),
CONSTRAINT `FK38CC06CCF5B03D50` FOREIGN KEY (Session_sessionId)
REFERENCES session (sessionId)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
This is four indexes for a two-column table! Of course nobody has actually written this, this is generated by JBoss/Hibernate, with a MySQL database used for storing data. Be very careful with code generators....
| Showing entries 1 to 6 |