Advertisement
Guest User

Untitled

a guest
Jul 11th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. Custmer WebApp API
  2. ==================
  3.  
  4. Project Setup
  5. ------------
  6.  
  7. ### Installation of Required JBoss
  8.  
  9.  
  10. Requirements:
  11. * Ant
  12. * Maven 3.3.9
  13. * CVS
  14. * MySql
  15.  
  16.  
  17. 1. Checkout CFM JBoss (this takes quite some time...)
  18. * CVS root: `:ext:catalysts@devsrv.centec.at:/cvsroot`
  19. * source directory / project: `jboss-7`
  20.  
  21. 2. Set Environment Variables
  22. * `FILESTORE_HOME` to a local cache directory, eg. `C:\catalysts\dev\centec\filestore`
  23. * `JBOSS_HOME` to the directory of where the before checked out jboss resides, eg. `C:\catalysts\src\centec\jboss-7`
  24. * `ANT_HOME` to the ant root dir, eg. `C:\catalysts\tools\apache-ant-1.9.7`
  25.  
  26. 3. Create DB / Import Data
  27. * Copy the latest zip file from `\\nas.centec.local\ragisTeam.local\Finance-Manager-Exports\manuell`
  28. * Extract anywhere and open `src/main/ant/build.xml`
  29. * Search for `<arg value="--user=root" />` and `<arg value="--password=test" />` and adapt to your local root user
  30. * Start `mvn install -P import-env` from the directory of the root pom.xml
  31.  
  32. 4. Start JBoss
  33. * run `%JBOSS_HOME%\bin\centec-standalone.bat`
  34.  
  35.  
  36. ### Starting / Deploying the Application
  37. * start the `hot deploy` run config in IntelliJ or run `mvn install jboss-as:deploy` in the root of the project
  38.  
  39. ### Debugging the Apllication
  40. * start the `Debug` run config in IntelliJ or manually connect a remote debugger (transport: socket, mode: attach, port: 8787)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement