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/Development/DBWS/RestfulComponent/UseCases"

(New page: == DBRS Use Cases ==)
 
Line 1: Line 1:
 
== DBRS Use Cases ==
 
== DBRS Use Cases ==
 +
The DBRS utility starts by reading some initial configuration information:
 +
<source lang="text" enclose="div">
 +
    prompt > DBRSBuilder [-builderFile {path to dbrsbuilder.properties}] -stageDir {path to stageDir}
 +
                      (if command-line arg -builderFile not present, default to look in current working directory)
 +
    prompt > DBRSBuilder running, connected to port 8884 ... Press <Return> to finish
 +
 +
dbrsbuilder.properties:
 +
 +
# builder properties
 +
builder.port=8884
 +
#builder.mode=production
 +
builder.mode=test
 +
builder.test.port=8885
 +
 +
# project properties
 +
project.name=projectname
 +
project.entities=employee, other entities ...
 +
 +
# database properties
 +
db.driver=com.mysql.jdbc.Driver
 +
db.url=jdbc:mysql://localhost:3306/db
 +
db.user=user
 +
db.pwd=password
 +
db.platform=org.eclipse.persistence.platform.database.MySQLPlatform
 +
logging.level=info
 +
<source lang="text" enclose="div">

Revision as of 15:38, 17 October 2011

DBRS Use Cases

The DBRS utility starts by reading some initial configuration information:

    prompt > DBRSBuilder [-builderFile {path to dbrsbuilder.properties}] -stageDir {path to stageDir}
                       (if command-line arg -builderFile not present, default to look in current working directory)
    prompt > DBRSBuilder running, connected to port 8884 ... Press <Return> to finish

dbrsbuilder.properties:

# builder properties
builder.port=8884
#builder.mode=production
builder.mode=test
builder.test.port=8885

# project properties
project.name=projectname
project.entities=employee, other entities ...

# database properties
db.driver=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/db
db.user=user
db.pwd=password
db.platform=org.eclipse.persistence.platform.database.MySQLPlatform
logging.level=info
<source lang="text" enclose="div">

Back to the top