AvailableMovies
| This is a simple Spring bean that we use as an easy way
to seed the example with a list of persistent Movie objects
The individual Movie objects are constructed by Spring, then
passed into the Movies EJB where they are transactionally
persisted with the EntityManager. |
code | html |
CineplexImpl
| Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. |
code | html |
Movie
| Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. |
code | html |
MoviesImpl
| A normal Stateful EJB that uses a JPA EntityManager. |
code | html |
Theater
| Spring bean that references the Movies EJB and the Movie JPA bean. |
code | html |
Theaters
| Injection of collections of Spring beans into an EJB
is not yet supported, so this Spring bean exists to
wrap the collection as an injectable object. |
code | html |