Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/MySports"

m (Install & Config)
(Image:Go-bottom.pngDownload)
Line 5: Line 5:
 
<div style="background:#ffffff;width:275px" align="center">
 
<div style="background:#ffffff;width:275px" align="center">
 
[[Image:EclipseLink_Mysports.png]]
 
[[Image:EclipseLink_Mysports.png]]
==[[Image:Go-bottom.png]][http://www.eclipse.org/eclipselink/downloads/2.2.0/MySports.zip Download]==
 
 
__TOC__
 
__TOC__
 
</div>
 
</div>

Revision as of 13:09, 16 June 2011

EclipseLink MySports Example

The MySports example is a simple web application which demonstrates several key features of

EclipseLink including:

  • EclipseLink JPA
    • @Multitenant(SINGLE_TABLE)
    • Extensible entities with @VirtualAccessMethods

Example Overview

The example includes 3 projects

  1. MySports: A Dynamic Web project which deploys the primary application exposing a JSF and

JAX-RS (REST) front end.

  1. MySports Admin:
  2. MySports Tests: A Java project containing Junit tests that verify the functionality of

Install & Config

At present the example is only available through SVN access. When completed a ZIP download will be made available.

Basic Steps

  1. Prepare Prerequisites:
    1. GlassFish 3.1
    2. Eclipse Java EE with GlassFish adapter
  2. Configure Eclipse
    1. Requires a variable named 'eclispelink_2.3_jar' for the javaagent usage of the test project
    2. Ensure you have a GlassFish Server configured in the Java EE perspective
  3. Configure GlassFish
    1. EclipseLink 2.3 bundles installed in GlassFish
    2. A connection pool named 'jdbc/MySports' must be defined in the server
  4. Get the example's projects
    1. Import the projects
    2. Customize the eclipselink-examples-mysports.properties file for your database
  5. Run The example
    1. Run the MySports AllTests launch target. This will create the database tables and prepare an initial population
    2. Run the MySports Admin application
    3. Run the MySports application

Example Details

MySports Domain

The domain model is that of any arbitrary sports league. The idea is that this SaaS

solution allows any league to host its information on the site and customize the data

stored as well as the look and feel.

Class Description
Division A league contains one or more divisions of teams used to divide teams by age, skill or simply to manage a larger set of teams.
Team A team is ...
Player A player is ...

Copyright © Eclipse Foundation, Inc. All Rights Reserved.