|
Last change
on this file since 269 was
268,
checked in by gav, 16 years ago
|
|
Refactor classes for asset tree refinement.
Regenerate views and controllers to suite.
|
|
File size:
837 bytes
|
| Line | |
|---|
| 1 | import grails.util.GrailsUtil |
|---|
| 2 | |
|---|
| 3 | class BootStrap |
|---|
| 4 | { |
|---|
| 5 | def createDataService |
|---|
| 6 | |
|---|
| 7 | def init = { servletContext -> |
|---|
| 8 | |
|---|
| 9 | log.info "Application starting." |
|---|
| 10 | log.debug "GrailsUtil.environment = ${GrailsUtil.environment}" |
|---|
| 11 | |
|---|
| 12 | switch (GrailsUtil.environment) |
|---|
| 13 | { |
|---|
| 14 | case "development": |
|---|
| 15 | //createDataService.ensureSystemAndAdminAccess() |
|---|
| 16 | //createDataService.createBaseData() |
|---|
| 17 | //createDataService.createDemoData() |
|---|
| 18 | break |
|---|
| 19 | case "test": |
|---|
| 20 | createDataService.ensureSystemAndAdminAccess() |
|---|
| 21 | break |
|---|
| 22 | case "production": |
|---|
| 23 | createDataService.ensureSystemAndAdminAccess() |
|---|
| 24 | break |
|---|
| 25 | } |
|---|
| 26 | |
|---|
| 27 | } |
|---|
| 28 | |
|---|
| 29 | def destroy = { |
|---|
| 30 | } |
|---|
| 31 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.