# SVN Project Checkout Steps ## Richieste - voglio scaricare il progetto su https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/arm_am-pom - scarica anche https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/asset-gui - crea un readme con le richieste che ho fatto - crea uno script powershell che fa il build ed il deploy di arm_am-pom su C:\Dev2012\BUILDERS\jboss-eap-8.0 - il pom è nel folder arm_am-pom - java 17 è su C:\Dev2012\BUILDERS\java\jdk-17.0.9 - aggiorna il readme - deve usare standalone-full-ADV360-BES-EAP_8_POSTGRES.xml - voglio compilare e lanciare il progetto asset-gui - jboss deve usare le opzioni "-DIDServer=GS -Dbtf.PathToParse=C:\Dev2012\advc0\in -Djava.awt.headless=true -DFilOptimize=true -DMTH_VALID_JB=internal -DskQueueElab=GS -DskQueueWrite=GS -DmtSession=GS" - C:\Dev2012\BUILDERS\jboss-eap-8.0\bin\add-user.bat" -u admin -p admin.123 -g SuperUser --silent dir $env:USERPROFILE\.m2\repository\com\armundia -Recurse | Where-Object { $_.Name -like "*.pom" } ## Projects Downloaded 1. ARM AM POM Project ``` svn checkout https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/arm_am-pom ``` 2. Asset GUI Project ``` svn checkout https://svn.armundia.com/svn/PRJarm_am/branches/ISPBEstero/ADV360-BES-JB8_B2024_2/asset-gui ``` Both projects were checked out at revision 132783. ## Project Structure ### arm_am-pom - Java/JEE project containing: - arm_am-ejb: EJB modules and web services - arm_am-jUnit: Test files - Various resources and configuration files ### asset-gui - Web application frontend project containing: - Frontend source code in `source` directory - UI libraries (Font Awesome, Bootstrap, amCharts, Roboto fonts) - Environment configurations (LOCAL, VUB, CIB, PBZ, KOPER) - Build configuration files (gulpfile.js, package.json, babel.config.js) ## Build and Deployment Scripts ### start-jboss.ps1 PowerShell script to start JBoss EAP 8.0 server: - Uses Java 17 from `C:\Dev2012\BUILDERS\java\jdk-17.0.9` - Uses `standalone-full-ADV360-BES-EAP_8_POSTGRES.xml` configuration - Starts JBoss in standalone mode with debug enabled - Binds to all interfaces (0.0.0.0) - Management console available at http://localhost:9990 - JBoss logs location: `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\log\server.log` ### stop-jboss.ps1 PowerShell script to stop JBoss EAP 8.0 server: - Finds and stops the JBoss process safely - Waits to ensure process is fully stopped ### build-and-deploy.ps1 PowerShell script to build and deploy the arm_am-pom project: - Uses Java 8 for building - Uses Maven profile `adv360-DEV` - Builds modules in correct order: 1. Parent POM 2. EJB module 3. WAR module 4. EAR module - Deploys the EAR file to JBoss deployment directory ### build-and-run-asset-gui.ps1 PowerShell script to build and run the asset-gui project: - Installs Node.js dependencies (npm install) - Builds the project with minification (gulp build --minified) - Starts the development server (gulp serve) - Development server will be available at http://localhost:3000 ## Build and Deploy Workflow 1. Start JBoss server: ```powershell .\start-jboss.ps1 ``` 2. Build and deploy the backend: ```powershell .\build-and-deploy.ps1 ``` 3. Build and run the frontend: ```powershell .\build-and-run-asset-gui.ps1 ``` 4. Monitor deployment: - Check JBoss logs at `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\log\server.log` - Access JBoss admin console at http://localhost:9990 - Access asset-gui frontend at http://localhost:3000 ## Required Configuration - JBoss configuration file: `standalone-full-ADV360-BES-EAP_8_POSTGRES.xml` must be present in `C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\configuration\` - Node.js must be installed to build and run asset-gui