filtro del log
This commit is contained in:
parent
f1d9490796
commit
b46c89e10b
@ -1,56 +1,117 @@
|
||||
# PowerShell script for building and deploying arm_am-pom to JBoss EAP 8.0
|
||||
|
||||
# Configuration
|
||||
$JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-8.0"
|
||||
$PROJECT_DIR = Join-Path $PSScriptRoot "workspace\arm_am-pom"
|
||||
$DEPLOYMENT_DIR = "$JBOSS_HOME\standalone\deployments"
|
||||
$MAVEN_PROFILE = "adv360-DEV" # Default development profile
|
||||
$JAVA_HOME = "C:\Dev2012\BUILDERS\java\jdk-17.0.9" # Path to Java 17
|
||||
# Read configuration from config.json
|
||||
$configPath = Join-Path $PSScriptRoot "config.json"
|
||||
if (-not (Test-Path $configPath)) {
|
||||
Write-Host "Error: config.json not found at $configPath" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
$config = Get-Content $configPath -Raw | ConvertFrom-Json
|
||||
|
||||
# Configuration from config.json
|
||||
$JBOSS_HOME = $config.jboss.jbossHome
|
||||
$DEPLOYMENT_DIR = $config.jboss.deploymentDir
|
||||
$PROJECT_DIR = $config.ear.projectDir
|
||||
$MAVEN_PROFILE = $config.ear.mavenProfile
|
||||
$JAVA_HOME = $config.jboss.javaHome
|
||||
$ASSET_GUI_DIR = $config.assetGui.projectDir
|
||||
$ASSET_GUI_TARGET = $config.assetGui.targetDir
|
||||
|
||||
# Store the original directory
|
||||
$originalDirectory = Get-Location
|
||||
|
||||
# Function to check if JBoss is running
|
||||
function Is-JBossRunning {
|
||||
function Test-JBossRunning {
|
||||
$jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
|
||||
Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" }
|
||||
return $null -ne $jbossProcess
|
||||
}
|
||||
|
||||
Write-Host "Starting build and deploy process..." -ForegroundColor Green
|
||||
Write-Host "Using configuration:" -ForegroundColor Yellow
|
||||
Write-Host " Java Home: $JAVA_HOME" -ForegroundColor Yellow
|
||||
Write-Host " JBoss Home: $JBOSS_HOME" -ForegroundColor Yellow
|
||||
Write-Host " Project Directory: $PROJECT_DIR" -ForegroundColor Yellow
|
||||
Write-Host " Maven Profile: $MAVEN_PROFILE" -ForegroundColor Yellow
|
||||
Write-Host " Asset GUI Directory: $ASSET_GUI_DIR" -ForegroundColor Yellow
|
||||
|
||||
# Check if Java exists
|
||||
if (-not (Test-Path $JAVA_HOME)) {
|
||||
Write-Host "Error: Java 17 not found at $JAVA_HOME" -ForegroundColor Red
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Write-Host "Error: Java not found at $JAVA_HOME" -ForegroundColor Red
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Set JAVA_HOME for the build
|
||||
$env:JAVA_HOME = $JAVA_HOME
|
||||
Write-Host "Using Java from: $JAVA_HOME" -ForegroundColor Yellow
|
||||
|
||||
# Check if JBoss directory exists
|
||||
if (-not (Test-Path $JBOSS_HOME)) {
|
||||
Write-Host "Error: JBoss directory not found at $JBOSS_HOME" -ForegroundColor Red
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Check if project directory exists
|
||||
# Check if project directories exist
|
||||
if (-not (Test-Path $PROJECT_DIR)) {
|
||||
Write-Host "Error: Project directory not found at $PROJECT_DIR" -ForegroundColor Red
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Navigate to project directory
|
||||
# Check Asset GUI directory and package.json
|
||||
$skipAssetGui = $false
|
||||
if (-not (Test-Path $ASSET_GUI_DIR)) {
|
||||
Write-Host "Warning: Asset GUI directory not found at $ASSET_GUI_DIR" -ForegroundColor Yellow
|
||||
Write-Host "Skipping Asset GUI build..." -ForegroundColor Yellow
|
||||
$skipAssetGui = $true
|
||||
}
|
||||
elseif (-not (Test-Path (Join-Path $ASSET_GUI_DIR "package.json"))) {
|
||||
Write-Host "Warning: package.json not found in Asset GUI directory" -ForegroundColor Yellow
|
||||
Write-Host "Skipping Asset GUI build..." -ForegroundColor Yellow
|
||||
$skipAssetGui = $true
|
||||
}
|
||||
|
||||
if (-not $skipAssetGui) {
|
||||
# Build and deploy Asset GUI
|
||||
Write-Host "Building Asset GUI..." -ForegroundColor Yellow
|
||||
Set-Location $ASSET_GUI_DIR
|
||||
|
||||
# Run npm install and build for Asset GUI
|
||||
Write-Host "Installing Asset GUI dependencies..." -ForegroundColor Yellow
|
||||
npm install
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "Warning: npm install failed! Skipping Asset GUI build..." -ForegroundColor Yellow
|
||||
$skipAssetGui = $true
|
||||
}
|
||||
|
||||
if (-not $skipAssetGui) {
|
||||
Write-Host "Building Asset GUI..." -ForegroundColor Yellow
|
||||
npm run build
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "Warning: Asset GUI build failed! Continuing with EAR build..." -ForegroundColor Yellow
|
||||
$skipAssetGui = $true
|
||||
}
|
||||
else {
|
||||
# Create Asset GUI target directory if it doesn't exist
|
||||
if (-not (Test-Path $ASSET_GUI_TARGET)) {
|
||||
New-Item -ItemType Directory -Path $ASSET_GUI_TARGET -Force
|
||||
}
|
||||
|
||||
# Copy Asset GUI build to target directory
|
||||
Write-Host "Copying Asset GUI build to target directory..." -ForegroundColor Yellow
|
||||
Copy-Item -Path "$ASSET_GUI_DIR\dist\*" -Destination $ASSET_GUI_TARGET -Recurse -Force
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Build EAR project
|
||||
Write-Host "Building EAR project..." -ForegroundColor Yellow
|
||||
Set-Location $PROJECT_DIR
|
||||
|
||||
# Build process
|
||||
Write-Host "Building project with profile $MAVEN_PROFILE..." -ForegroundColor Yellow
|
||||
|
||||
# Build parent
|
||||
Write-Host "Building parent project..." -ForegroundColor Yellow
|
||||
mvn clean install -N "-P$MAVEN_PROFILE"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "Maven parent build failed!" -ForegroundColor Red
|
||||
@ -59,30 +120,32 @@ if ($LASTEXITCODE -ne 0) {
|
||||
}
|
||||
|
||||
# Build EJB module
|
||||
Write-Host "Building EJB module..." -ForegroundColor Yellow
|
||||
Set-Location "$PROJECT_DIR\arm_am-ejb"
|
||||
mvn clean install -DskipTests "-P$MAVEN_PROFILE"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "Maven EJB module build failed!" -ForegroundColor Red
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Build WAR module
|
||||
Write-Host "Building WAR module..." -ForegroundColor Yellow
|
||||
Set-Location "$PROJECT_DIR\arm_am"
|
||||
mvn clean install -DskipTests "-P$MAVEN_PROFILE"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "Maven WAR module build failed!" -ForegroundColor Red
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Finally build the EAR module with debug output
|
||||
# Build EAR module
|
||||
Write-Host "Building EAR module..." -ForegroundColor Yellow
|
||||
Set-Location (Join-Path $PROJECT_DIR "arm_am-ear")
|
||||
Set-Location "$PROJECT_DIR\arm_am-ear"
|
||||
mvn clean package -DskipTests "-P$MAVEN_PROFILE"
|
||||
if ($LASTEXITCODE -ne 0) {
|
||||
Write-Host "Maven EAR module build failed!" -ForegroundColor Red
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
@ -92,29 +155,82 @@ $earFile = Get-ChildItem -Path "$PROJECT_DIR\arm_am-ear\target\*.ear" -ErrorActi
|
||||
if (-not $earFile) {
|
||||
Write-Host "Error: EAR file not found after build" -ForegroundColor Red
|
||||
Write-Host "Searching in: $PROJECT_DIR\arm_am-ear\target\" -ForegroundColor Yellow
|
||||
Set-Location $originalDirectory # Restore original directory
|
||||
Set-Location $originalDirectory
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Create deployments directory if it doesn't exist
|
||||
if (-not (Test-Path $DEPLOYMENT_DIR)) {
|
||||
New-Item -ItemType Directory -Path $DEPLOYMENT_DIR
|
||||
New-Item -ItemType Directory -Path $DEPLOYMENT_DIR -Force
|
||||
}
|
||||
|
||||
# Copy EAR file to JBoss deployments directory
|
||||
Write-Host "Deploying EAR to JBoss..." -ForegroundColor Yellow
|
||||
Write-Host "Copying from: $($earFile.FullName)" -ForegroundColor Yellow
|
||||
Write-Host "Copying to: $DEPLOYMENT_DIR" -ForegroundColor Yellow
|
||||
Copy-Item $earFile.FullName $DEPLOYMENT_DIR
|
||||
|
||||
# Remove existing deployment if present
|
||||
$deployedEarPath = Join-Path $DEPLOYMENT_DIR $config.ear.deployedFile
|
||||
if (Test-Path $deployedEarPath) {
|
||||
Write-Host "Removing existing deployment..." -ForegroundColor Yellow
|
||||
Remove-Item $deployedEarPath -Force
|
||||
}
|
||||
|
||||
# Copy new EAR file with the configured name
|
||||
Copy-Item $earFile.FullName $deployedEarPath
|
||||
|
||||
# Unpack EAR if configured
|
||||
if ($config.ear.unpackDir) {
|
||||
Write-Host "Unpacking EAR to: $($config.ear.unpackDir)" -ForegroundColor Yellow
|
||||
|
||||
# Create unpack directory if it doesn't exist
|
||||
if (-not (Test-Path $config.ear.unpackDir)) {
|
||||
New-Item -ItemType Directory -Path $config.ear.unpackDir -Force
|
||||
}
|
||||
|
||||
# Clean existing content
|
||||
Remove-Item "$($config.ear.unpackDir)\*" -Recurse -Force -ErrorAction SilentlyContinue
|
||||
|
||||
# Use 7-Zip to unpack the EAR (Java JAR files are ZIP format)
|
||||
try {
|
||||
$7zPath = "C:\Program Files\7-Zip\7z.exe"
|
||||
if (Test-Path $7zPath) {
|
||||
# Use 7-Zip
|
||||
Start-Process -FilePath $7zPath -ArgumentList "x", "`"$deployedEarPath`"", "-o`"$($config.ear.unpackDir)`"", "-y" -Wait -NoNewWindow
|
||||
} else {
|
||||
# Fallback to jar command from Java
|
||||
$jarPath = Join-Path $JAVA_HOME "bin\jar.exe"
|
||||
if (Test-Path $jarPath) {
|
||||
Set-Location $config.ear.unpackDir
|
||||
Start-Process -FilePath $jarPath -ArgumentList "xf", "`"$deployedEarPath`"" -Wait -NoNewWindow
|
||||
} else {
|
||||
Write-Host "Warning: Could not unpack EAR - neither 7-Zip nor jar command found" -ForegroundColor Yellow
|
||||
}
|
||||
}
|
||||
}
|
||||
catch {
|
||||
Write-Host "Warning: Failed to unpack EAR: $_" -ForegroundColor Yellow
|
||||
}
|
||||
finally {
|
||||
Set-Location $originalDirectory
|
||||
}
|
||||
}
|
||||
|
||||
# Check if JBoss is running
|
||||
if (Is-JBossRunning) {
|
||||
if (Test-JBossRunning) {
|
||||
Write-Host "JBoss is running - deployment will be automatically picked up" -ForegroundColor Green
|
||||
} else {
|
||||
Write-Host "Note: JBoss is not running. Start JBoss to complete deployment" -ForegroundColor Yellow
|
||||
}
|
||||
|
||||
Write-Host "Build and deploy process completed!" -ForegroundColor Green
|
||||
Write-Host "Build and deploy process completed successfully!" -ForegroundColor Green
|
||||
if (-not $skipAssetGui) {
|
||||
Write-Host " - Asset GUI deployed to: $ASSET_GUI_TARGET" -ForegroundColor Green
|
||||
}
|
||||
Write-Host " - EAR deployed to: $deployedEarPath" -ForegroundColor Green
|
||||
if ($config.ear.unpackDir) {
|
||||
Write-Host " - EAR unpacked to: $($config.ear.unpackDir)" -ForegroundColor Green
|
||||
}
|
||||
|
||||
# Restore the original directory
|
||||
Set-Location $originalDirectory
|
||||
|
24
config.json
Normal file
24
config.json
Normal file
@ -0,0 +1,24 @@
|
||||
{
|
||||
"jboss": {
|
||||
"configFile": "standalone-full-ADV360-BES-EAP_8_POSTGRES.xml",
|
||||
"jbossHome": "C:\\Dev2012\\BUILDERS\\jboss-eap-8.0",
|
||||
"deploymentDir": "C:\\Dev2012\\BUILDERS\\jboss-eap-8.0\\standalone\\deployments",
|
||||
"javaHome": "C:\\Dev2012\\BUILDERS\\java\\jdk-17.0.9"
|
||||
},
|
||||
"customFormatter": {
|
||||
"src": "src",
|
||||
"build": "build",
|
||||
"classes": "build/classes",
|
||||
"jar": "custom-formatter.jar"
|
||||
},
|
||||
"ear": {
|
||||
"projectDir": "C:\\Dev2012\\source\\WindSurf\\adv8\\workspace\\arm_am-pom",
|
||||
"mavenProfile": "adv360-DEV",
|
||||
"deployedFile": "adv360-ear.ear",
|
||||
"unpackDir": "C:\\Dev2012\\source\\WindSurf\\adv8\\workspace\\arm_am-unpacked"
|
||||
},
|
||||
"assetGui": {
|
||||
"projectDir": "C:\\Dev2012\\source\\WindSurf\\adv8\\workspace\\asset-gui",
|
||||
"targetDir": "C:\\Dev2012\\source\\WindSurf\\adv8\\workspace\\arm_am-pom\\arm_am\\WebContent\\adv"
|
||||
}
|
||||
}
|
617
config/standalone-full-ADV360-BES-EAP_8_POSTGRES.xml
Normal file
617
config/standalone-full-ADV360-BES-EAP_8_POSTGRES.xml
Normal file
@ -0,0 +1,617 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<server xmlns="urn:jboss:domain:20.0">
|
||||
<extensions>
|
||||
<extension module="org.jboss.as.clustering.infinispan"/>
|
||||
<extension module="org.jboss.as.connector"/>
|
||||
<extension module="org.jboss.as.deployment-scanner"/>
|
||||
<extension module="org.jboss.as.ee"/>
|
||||
<extension module="org.jboss.as.ejb3"/>
|
||||
<extension module="org.jboss.as.jaxrs"/>
|
||||
<extension module="org.jboss.as.jdr"/>
|
||||
<extension module="org.jboss.as.jmx"/>
|
||||
<extension module="org.jboss.as.jpa"/>
|
||||
<extension module="org.jboss.as.jsf"/>
|
||||
<extension module="org.jboss.as.logging"/>
|
||||
<extension module="org.jboss.as.mail"/>
|
||||
<extension module="org.jboss.as.naming"/>
|
||||
<extension module="org.jboss.as.pojo"/>
|
||||
<extension module="org.jboss.as.remoting"/>
|
||||
<extension module="org.jboss.as.sar"/>
|
||||
<extension module="org.jboss.as.transactions"/>
|
||||
<extension module="org.jboss.as.webservices"/>
|
||||
<extension module="org.jboss.as.weld"/>
|
||||
<extension module="org.wildfly.extension.batch.jberet"/>
|
||||
<extension module="org.wildfly.extension.bean-validation"/>
|
||||
<extension module="org.wildfly.extension.clustering.ejb"/>
|
||||
<extension module="org.wildfly.extension.clustering.web"/>
|
||||
<extension module="org.wildfly.extension.core-management"/>
|
||||
<extension module="org.wildfly.extension.discovery"/>
|
||||
<extension module="org.wildfly.extension.ee-security"/>
|
||||
<extension module="org.wildfly.extension.elytron"/>
|
||||
<extension module="org.wildfly.extension.elytron-oidc-client"/>
|
||||
<extension module="org.wildfly.extension.health"/>
|
||||
<extension module="org.wildfly.extension.io"/>
|
||||
<extension module="org.wildfly.extension.messaging-activemq"/>
|
||||
<extension module="org.wildfly.extension.metrics"/>
|
||||
<extension module="org.wildfly.extension.request-controller"/>
|
||||
<extension module="org.wildfly.extension.security.manager"/>
|
||||
<extension module="org.wildfly.extension.undertow"/>
|
||||
<extension module="org.wildfly.iiop-openjdk"/>
|
||||
</extensions>
|
||||
<system-properties>
|
||||
<property name="ID.SERVER" value="BES_LOCAL"/>
|
||||
<property name="OUTPUT.FOLDER" value="../standalone/adv360/output"/>
|
||||
<property name="PUBLIC.ADDRESS" value="https://armint07.armundia.com/f2f/"/>
|
||||
<property name="AUTHENTICATION_SERVICE" value="http://localhost:8080/arm_am/rest/"/>
|
||||
</system-properties>
|
||||
<management>
|
||||
<audit-log>
|
||||
<formatters>
|
||||
<json-formatter name="json-formatter"/>
|
||||
</formatters>
|
||||
<handlers>
|
||||
<file-handler name="file" formatter="json-formatter" path="audit-log.log" relative-to="jboss.server.data.dir"/>
|
||||
</handlers>
|
||||
<logger log-boot="true" log-read-only="false" enabled="false">
|
||||
<handlers>
|
||||
<handler name="file"/>
|
||||
</handlers>
|
||||
</logger>
|
||||
</audit-log>
|
||||
<management-interfaces>
|
||||
<http-interface http-authentication-factory="management-http-authentication">
|
||||
<http-upgrade enabled="true" sasl-authentication-factory="management-sasl-authentication"/>
|
||||
<socket-binding http="management-http"/>
|
||||
</http-interface>
|
||||
</management-interfaces>
|
||||
<access-control provider="simple">
|
||||
<role-mapping>
|
||||
<role name="SuperUser">
|
||||
<include>
|
||||
<user name="$local"/>
|
||||
</include>
|
||||
</role>
|
||||
</role-mapping>
|
||||
</access-control>
|
||||
</management>
|
||||
<profile>
|
||||
<subsystem xmlns="urn:jboss:domain:logging:8.0">
|
||||
<console-handler name="CONSOLE">
|
||||
<level name="DEBUG"/>
|
||||
<formatter>
|
||||
<named-formatter name="COLOR-PATTERN"/>
|
||||
</formatter>
|
||||
</console-handler>
|
||||
<periodic-rotating-file-handler name="FILE" autoflush="true">
|
||||
<formatter>
|
||||
<named-formatter name="PATTERN"/>
|
||||
</formatter>
|
||||
<file relative-to="jboss.server.log.dir" path="server.log"/>
|
||||
<suffix value=".dd"/>
|
||||
<append value="true"/>
|
||||
</periodic-rotating-file-handler>
|
||||
<periodic-size-rotating-file-handler name="PERIODIC_SIZE_TRACE" autoflush="true">
|
||||
<level name="INFO"/>
|
||||
<formatter>
|
||||
<named-formatter name="PATTERN"/>
|
||||
</formatter>
|
||||
<file relative-to="jboss.server.log.dir" path="server-trace.log"/>
|
||||
<rotate-size value="10M"/>
|
||||
<max-backup-index value="10"/>
|
||||
<suffix value=".dd"/>
|
||||
<append value="true"/>
|
||||
</periodic-size-rotating-file-handler>
|
||||
<periodic-size-rotating-file-handler name="PERIODIC_SIZE" autoflush="true">
|
||||
<level name="INFO"/>
|
||||
<formatter>
|
||||
<named-formatter name="PATTERN"/>
|
||||
</formatter>
|
||||
<file relative-to="jboss.server.log.dir" path="server-info.log"/>
|
||||
<rotate-size value="1M"/>
|
||||
<max-backup-index value="20"/>
|
||||
<suffix value=".dd"/>
|
||||
<append value="false"/>
|
||||
</periodic-size-rotating-file-handler>
|
||||
<logger category="org.apache.activemq.artemis.ra.inflow.ActiveMQActivation">
|
||||
<level name="TRACE"/>
|
||||
</logger>
|
||||
<logger category="com.arjuna">
|
||||
<level name="WARN"/>
|
||||
</logger>
|
||||
<logger category="io.jaegertracing.Configuration">
|
||||
<level name="WARN"/>
|
||||
</logger>
|
||||
<logger category="org.jboss.as.config">
|
||||
<level name="DEBUG"/>
|
||||
</logger>
|
||||
<logger category="sun.rmi">
|
||||
<level name="WARN"/>
|
||||
</logger>
|
||||
<logger category="com.armundia">
|
||||
<level name="INFO"/>
|
||||
</logger>
|
||||
<root-logger>
|
||||
<level name="INFO"/>
|
||||
<handlers>
|
||||
<handler name="CONSOLE"/>
|
||||
<handler name="PERIODIC_SIZE"/>
|
||||
</handlers>
|
||||
</root-logger>
|
||||
<formatter name="PATTERN">
|
||||
<pattern-formatter pattern="%d{yyyy-MM-dd HH:mm:ss,SSS} %-5p [%c] (%t) %encode{%s%e}{XML}%n"/>
|
||||
</formatter>
|
||||
<formatter name="COLOR-PATTERN">
|
||||
<pattern-formatter pattern="%K{level}%d{HH:mm:ss,SSS} %-5p [%c] (%t) %s%e%n"/>
|
||||
</formatter>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:batch-jberet:3.0">
|
||||
<default-job-repository name="in-memory"/>
|
||||
<default-thread-pool name="batch"/>
|
||||
<security-domain name="ApplicationDomain"/>
|
||||
<job-repository name="in-memory">
|
||||
<in-memory/>
|
||||
</job-repository>
|
||||
<thread-pool name="batch">
|
||||
<max-threads count="10"/>
|
||||
<keepalive-time time="30" unit="seconds"/>
|
||||
</thread-pool>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:bean-validation:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:core-management:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:datasources:7.0">
|
||||
<datasources>
|
||||
<datasource jndi-name="java:jboss/datasources/ExampleDS" pool-name="ExampleDS" enabled="true" use-java-context="true" statistics-enabled="${wildfly.datasources.statistics-enabled:${wildfly.statistics-enabled:false}}">
|
||||
<connection-url>jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;MODE=${wildfly.h2.compatibility.mode:REGULAR}</connection-url>
|
||||
<driver>h2</driver>
|
||||
<security>
|
||||
<user-name>sa</user-name>
|
||||
<password>sa</password>
|
||||
</security>
|
||||
</datasource>
|
||||
<datasource jndi-name="java:jboss/datasources/arm_amDatasource" pool-name="arm_amDatasource" enabled="true">
|
||||
<connection-url>jdbc:postgresql://localhost:5432/advc?currentSchema=advc_own</connection-url>
|
||||
<driver>postgresql</driver>
|
||||
<security>
|
||||
<user-name>bes2</user-name>
|
||||
<password>Armu4010</password>
|
||||
</security>
|
||||
<validation>
|
||||
<check-valid-connection-sql>select 1</check-valid-connection-sql>
|
||||
<validate-on-match>false</validate-on-match>
|
||||
<background-validation-millis>300000</background-validation-millis>
|
||||
</validation>
|
||||
<timeout>
|
||||
<idle-timeout-minutes>60</idle-timeout-minutes>
|
||||
</timeout>
|
||||
</datasource>
|
||||
<drivers>
|
||||
<driver name="h2" module="com.h2database.h2">
|
||||
<xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class>
|
||||
</driver>
|
||||
<driver name="postgresql" module="org.postgresql">
|
||||
<driver-class>org.postgresql.Driver</driver-class>
|
||||
</driver>
|
||||
</drivers>
|
||||
</datasources>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:deployment-scanner:2.0">
|
||||
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" runtime-failure-causes-rollback="${jboss.deployment.scanner.rollback.on.failure:false}"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:discovery:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:distributable-ejb:1.0" default-bean-management="default">
|
||||
<infinispan-bean-management name="default" max-active-beans="10000" cache-container="ejb" cache="passivation"/>
|
||||
<local-client-mappings-registry/>
|
||||
<infinispan-timer-management name="persistent" cache-container="ejb" cache="persistent" max-active-timers="10000"/>
|
||||
<infinispan-timer-management name="transient" cache-container="ejb" cache="transient" max-active-timers="10000"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:distributable-web:4.0" default-session-management="default" default-single-sign-on-management="default">
|
||||
<infinispan-session-management name="default" cache-container="web" granularity="SESSION">
|
||||
<local-affinity/>
|
||||
</infinispan-session-management>
|
||||
<infinispan-single-sign-on-management name="default" cache-container="web" cache="sso"/>
|
||||
<local-routing/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:ee:6.0">
|
||||
<spec-descriptor-property-replacement>false</spec-descriptor-property-replacement>
|
||||
<concurrent>
|
||||
<context-services>
|
||||
<context-service name="default" jndi-name="java:jboss/ee/concurrency/context/default"/>
|
||||
</context-services>
|
||||
<managed-thread-factories>
|
||||
<managed-thread-factory name="default" jndi-name="java:jboss/ee/concurrency/factory/default" context-service="default"/>
|
||||
</managed-thread-factories>
|
||||
<managed-executor-services>
|
||||
<managed-executor-service name="default" jndi-name="java:jboss/ee/concurrency/executor/default" context-service="default" hung-task-termination-period="0" hung-task-threshold="60000" keepalive-time="5000"/>
|
||||
</managed-executor-services>
|
||||
<managed-scheduled-executor-services>
|
||||
<managed-scheduled-executor-service name="default" jndi-name="java:jboss/ee/concurrency/scheduler/default" context-service="default" hung-task-termination-period="0" hung-task-threshold="60000" keepalive-time="3000"/>
|
||||
</managed-scheduled-executor-services>
|
||||
</concurrent>
|
||||
<default-bindings context-service="java:jboss/ee/concurrency/context/default" datasource="java:jboss/datasources/ExampleDS" jms-connection-factory="java:jboss/DefaultJMSConnectionFactory" managed-executor-service="java:jboss/ee/concurrency/executor/default" managed-scheduled-executor-service="java:jboss/ee/concurrency/scheduler/default" managed-thread-factory="java:jboss/ee/concurrency/factory/default"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:ee-security:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:ejb3:10.0">
|
||||
<session-bean>
|
||||
<stateless>
|
||||
<bean-instance-pool-ref pool-name="slsb-strict-max-pool"/>
|
||||
</stateless>
|
||||
<stateful default-access-timeout="5000" cache-ref="simple" passivation-disabled-cache-ref="simple"/>
|
||||
<singleton default-access-timeout="5000"/>
|
||||
</session-bean>
|
||||
<mdb>
|
||||
<resource-adapter-ref resource-adapter-name="${ejb.resource-adapter-name:activemq-ra.rar}"/>
|
||||
<bean-instance-pool-ref pool-name="mdb-strict-max-pool"/>
|
||||
</mdb>
|
||||
<pools>
|
||||
<bean-instance-pools>
|
||||
<strict-max-pool name="slsb-strict-max-pool" derive-size="from-worker-pools" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
|
||||
<strict-max-pool name="mdb-strict-max-pool" derive-size="from-cpu-count" instance-acquisition-timeout="5" instance-acquisition-timeout-unit="MINUTES"/>
|
||||
</bean-instance-pools>
|
||||
</pools>
|
||||
<caches>
|
||||
<simple-cache name="simple"/>
|
||||
<distributable-cache name="distributable"/>
|
||||
</caches>
|
||||
<async thread-pool-name="default"/>
|
||||
<timer-service thread-pool-name="default" default-data-store="default-file-store">
|
||||
<data-stores>
|
||||
<file-data-store name="default-file-store" path="timer-service-data" relative-to="jboss.server.data.dir"/>
|
||||
</data-stores>
|
||||
</timer-service>
|
||||
<remote cluster="ejb" connectors="http-remoting-connector" thread-pool-name="default">
|
||||
<channel-creation-options>
|
||||
<option name="MAX_OUTBOUND_MESSAGES" value="1234" type="remoting"/>
|
||||
</channel-creation-options>
|
||||
</remote>
|
||||
<thread-pools>
|
||||
<thread-pool name="default">
|
||||
<max-threads count="10"/>
|
||||
<keepalive-time time="60" unit="seconds"/>
|
||||
</thread-pool>
|
||||
</thread-pools>
|
||||
<iiop enable-by-default="false" use-qualified-name="false"/>
|
||||
<default-security-domain value="other"/>
|
||||
<application-security-domains>
|
||||
<application-security-domain name="other" security-domain="ApplicationDomain"/>
|
||||
</application-security-domains>
|
||||
<default-missing-method-permissions-deny-access value="true"/>
|
||||
<statistics enabled="${wildfly.ejb3.statistics-enabled:${wildfly.statistics-enabled:false}}"/>
|
||||
<log-system-exceptions value="true"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:wildfly:elytron:18.0" final-providers="combined-providers" disallowed-providers="OracleUcrypto">
|
||||
<providers>
|
||||
<aggregate-providers name="combined-providers">
|
||||
<providers name="elytron"/>
|
||||
<providers name="openssl"/>
|
||||
</aggregate-providers>
|
||||
<provider-loader name="elytron" module="org.wildfly.security.elytron"/>
|
||||
<provider-loader name="openssl" module="org.wildfly.openssl"/>
|
||||
</providers>
|
||||
<audit-logging>
|
||||
<file-audit-log name="local-audit" path="audit.log" relative-to="jboss.server.log.dir" format="JSON"/>
|
||||
</audit-logging>
|
||||
<security-domains>
|
||||
<security-domain name="ApplicationDomain" default-realm="ApplicationRealm" permission-mapper="default-permission-mapper">
|
||||
<realm name="ApplicationRealm" role-decoder="groups-to-roles"/>
|
||||
<realm name="local"/>
|
||||
</security-domain>
|
||||
<security-domain name="ManagementDomain" default-realm="ManagementRealm" permission-mapper="default-permission-mapper">
|
||||
<realm name="ManagementRealm" role-decoder="groups-to-roles"/>
|
||||
<realm name="local" role-mapper="super-user-mapper"/>
|
||||
</security-domain>
|
||||
</security-domains>
|
||||
<security-realms>
|
||||
<identity-realm name="local" identity="$local"/>
|
||||
<properties-realm name="ApplicationRealm">
|
||||
<users-properties path="application-users.properties" relative-to="jboss.server.config.dir" digest-realm-name="ApplicationRealm"/>
|
||||
<groups-properties path="application-roles.properties" relative-to="jboss.server.config.dir"/>
|
||||
</properties-realm>
|
||||
<properties-realm name="ManagementRealm">
|
||||
<users-properties path="mgmt-users.properties" relative-to="jboss.server.config.dir" digest-realm-name="ManagementRealm"/>
|
||||
<groups-properties path="mgmt-groups.properties" relative-to="jboss.server.config.dir"/>
|
||||
</properties-realm>
|
||||
</security-realms>
|
||||
<mappers>
|
||||
<simple-permission-mapper name="default-permission-mapper" mapping-mode="first">
|
||||
<permission-mapping>
|
||||
<principal name="anonymous"/>
|
||||
<permission-set name="default-permissions"/>
|
||||
</permission-mapping>
|
||||
<permission-mapping match-all="true">
|
||||
<permission-set name="login-permission"/>
|
||||
<permission-set name="default-permissions"/>
|
||||
</permission-mapping>
|
||||
</simple-permission-mapper>
|
||||
<constant-realm-mapper name="local" realm-name="local"/>
|
||||
<simple-role-decoder name="groups-to-roles" attribute="groups"/>
|
||||
<constant-role-mapper name="super-user-mapper">
|
||||
<role name="SuperUser"/>
|
||||
</constant-role-mapper>
|
||||
</mappers>
|
||||
<permission-sets>
|
||||
<permission-set name="login-permission">
|
||||
<permission class-name="org.wildfly.security.auth.permission.LoginPermission"/>
|
||||
</permission-set>
|
||||
<permission-set name="default-permissions">
|
||||
<permission class-name="org.wildfly.transaction.client.RemoteTransactionPermission" module="org.wildfly.transaction.client"/>
|
||||
<permission class-name="org.jboss.ejb.client.RemoteEJBPermission" module="org.jboss.ejb-client"/>
|
||||
<permission class-name="org.wildfly.extension.batch.jberet.deployment.BatchPermission" module="org.wildfly.extension.batch.jberet" target-name="*"/>
|
||||
</permission-set>
|
||||
</permission-sets>
|
||||
<http>
|
||||
<http-authentication-factory name="application-http-authentication" security-domain="ApplicationDomain" http-server-mechanism-factory="global">
|
||||
<mechanism-configuration>
|
||||
<mechanism mechanism-name="BASIC">
|
||||
<mechanism-realm realm-name="ApplicationRealm"/>
|
||||
</mechanism>
|
||||
</mechanism-configuration>
|
||||
</http-authentication-factory>
|
||||
<http-authentication-factory name="management-http-authentication" security-domain="ManagementDomain" http-server-mechanism-factory="global">
|
||||
<mechanism-configuration>
|
||||
<mechanism mechanism-name="DIGEST">
|
||||
<mechanism-realm realm-name="ManagementRealm"/>
|
||||
</mechanism>
|
||||
</mechanism-configuration>
|
||||
</http-authentication-factory>
|
||||
<provider-http-server-mechanism-factory name="global"/>
|
||||
</http>
|
||||
<sasl>
|
||||
<sasl-authentication-factory name="application-sasl-authentication" sasl-server-factory="configured" security-domain="ApplicationDomain">
|
||||
<mechanism-configuration>
|
||||
<mechanism mechanism-name="JBOSS-LOCAL-USER" realm-mapper="local"/>
|
||||
<mechanism mechanism-name="DIGEST-MD5">
|
||||
<mechanism-realm realm-name="ApplicationRealm"/>
|
||||
</mechanism>
|
||||
</mechanism-configuration>
|
||||
</sasl-authentication-factory>
|
||||
<sasl-authentication-factory name="management-sasl-authentication" sasl-server-factory="configured" security-domain="ManagementDomain">
|
||||
<mechanism-configuration>
|
||||
<mechanism mechanism-name="JBOSS-LOCAL-USER" realm-mapper="local"/>
|
||||
<mechanism mechanism-name="DIGEST-MD5">
|
||||
<mechanism-realm realm-name="ManagementRealm"/>
|
||||
</mechanism>
|
||||
</mechanism-configuration>
|
||||
</sasl-authentication-factory>
|
||||
<configurable-sasl-server-factory name="configured" sasl-server-factory="elytron">
|
||||
<properties>
|
||||
<property name="wildfly.sasl.local-user.default-user" value="$local"/>
|
||||
<property name="wildfly.sasl.local-user.challenge-path" value="${jboss.server.temp.dir}/auth"/>
|
||||
</properties>
|
||||
</configurable-sasl-server-factory>
|
||||
<mechanism-provider-filtering-sasl-server-factory name="elytron" sasl-server-factory="global">
|
||||
<filters>
|
||||
<filter provider-name="WildFlyElytron"/>
|
||||
</filters>
|
||||
</mechanism-provider-filtering-sasl-server-factory>
|
||||
<provider-sasl-server-factory name="global"/>
|
||||
</sasl>
|
||||
<tls>
|
||||
<key-stores>
|
||||
<key-store name="applicationKS">
|
||||
<credential-reference clear-text="password"/>
|
||||
<implementation type="JKS"/>
|
||||
<file path="application.keystore" relative-to="jboss.server.config.dir"/>
|
||||
</key-store>
|
||||
</key-stores>
|
||||
<key-managers>
|
||||
<key-manager name="applicationKM" key-store="applicationKS" generate-self-signed-certificate-host="localhost">
|
||||
<credential-reference clear-text="password"/>
|
||||
</key-manager>
|
||||
</key-managers>
|
||||
<server-ssl-contexts>
|
||||
<server-ssl-context name="applicationSSC" key-manager="applicationKM"/>
|
||||
</server-ssl-contexts>
|
||||
</tls>
|
||||
<policy name="jacc">
|
||||
<jacc-policy/>
|
||||
</policy>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:wildfly:elytron-oidc-client:2.0"/>
|
||||
<subsystem xmlns="urn:wildfly:health:1.0" security-enabled="false"/>
|
||||
<subsystem xmlns="urn:jboss:domain:iiop-openjdk:3.0">
|
||||
<orb socket-binding="iiop"/>
|
||||
<initializers security="elytron" transactions="spec"/>
|
||||
<security server-requires-ssl="false" client-requires-ssl="false"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:infinispan:14.0">
|
||||
<cache-container name="hibernate" marshaller="JBOSS" modules="org.infinispan.hibernate-cache">
|
||||
<local-cache name="entity">
|
||||
<heap-memory size="10000"/>
|
||||
<expiration max-idle="100000"/>
|
||||
</local-cache>
|
||||
<local-cache name="local-query">
|
||||
<heap-memory size="10000"/>
|
||||
<expiration max-idle="100000"/>
|
||||
</local-cache>
|
||||
<local-cache name="timestamps">
|
||||
<expiration interval="0"/>
|
||||
</local-cache>
|
||||
<local-cache name="pending-puts">
|
||||
<expiration max-idle="60000"/>
|
||||
</local-cache>
|
||||
</cache-container>
|
||||
<cache-container name="ejb" default-cache="passivation" marshaller="PROTOSTREAM" aliases="sfsb" modules="org.wildfly.clustering.ejb.infinispan">
|
||||
<local-cache name="passivation">
|
||||
<expiration interval="0"/>
|
||||
<file-store passivation="true"/>
|
||||
</local-cache>
|
||||
<local-cache name="persistent">
|
||||
<locking isolation="REPEATABLE_READ"/>
|
||||
<transaction mode="BATCH"/>
|
||||
<expiration interval="0"/>
|
||||
<file-store preload="true"/>
|
||||
</local-cache>
|
||||
<local-cache name="transient">
|
||||
<locking isolation="REPEATABLE_READ"/>
|
||||
<transaction mode="BATCH"/>
|
||||
<expiration interval="0"/>
|
||||
<file-store passivation="true" purge="true"/>
|
||||
</local-cache>
|
||||
</cache-container>
|
||||
<cache-container name="web" default-cache="passivation" marshaller="PROTOSTREAM" modules="org.wildfly.clustering.web.infinispan">
|
||||
<local-cache name="passivation">
|
||||
<expiration interval="0"/>
|
||||
<file-store passivation="true"/>
|
||||
</local-cache>
|
||||
<local-cache name="sso">
|
||||
<expiration interval="0"/>
|
||||
</local-cache>
|
||||
</cache-container>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:io:3.0">
|
||||
<worker name="default"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:jaxrs:3.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:jca:6.0">
|
||||
<archive-validation enabled="true" fail-on-error="true" fail-on-warn="false"/>
|
||||
<bean-validation enabled="true"/>
|
||||
<default-workmanager>
|
||||
<short-running-threads>
|
||||
<core-threads count="50"/>
|
||||
<queue-length count="50"/>
|
||||
<max-threads count="50"/>
|
||||
<keepalive-time time="10" unit="seconds"/>
|
||||
</short-running-threads>
|
||||
<long-running-threads>
|
||||
<core-threads count="50"/>
|
||||
<queue-length count="50"/>
|
||||
<max-threads count="50"/>
|
||||
<keepalive-time time="10" unit="seconds"/>
|
||||
</long-running-threads>
|
||||
</default-workmanager>
|
||||
<cached-connection-manager/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:jdr:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:jmx:1.3">
|
||||
<expose-resolved-model/>
|
||||
<expose-expression-model/>
|
||||
<remoting-connector/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:jpa:1.1">
|
||||
<jpa default-extended-persistence-inheritance="DEEP"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:jsf:1.1"/>
|
||||
<subsystem xmlns="urn:jboss:domain:mail:4.0">
|
||||
<mail-session name="default" jndi-name="java:jboss/mail/Default">
|
||||
<smtp-server outbound-socket-binding-ref="mail-smtp"/>
|
||||
</mail-session>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:messaging-activemq:15.0">
|
||||
<server name="default">
|
||||
<security elytron-domain="ApplicationDomain"/>
|
||||
<statistics enabled="${wildfly.messaging-activemq.statistics-enabled:${wildfly.statistics-enabled:false}}"/>
|
||||
<security-setting name="#">
|
||||
<role name="guest" send="true" consume="true" create-non-durable-queue="true" delete-non-durable-queue="true"/>
|
||||
</security-setting>
|
||||
<address-setting name="#" dead-letter-address="jms.queue.DLQ" expiry-address="jms.queue.ExpiryQueue" max-size-bytes="10485760" page-size-bytes="2097152" message-counter-history-day-limit="10"/>
|
||||
<http-connector name="http-connector" socket-binding="http" endpoint="http-acceptor"/>
|
||||
<http-connector name="http-connector-throughput" socket-binding="http" endpoint="http-acceptor-throughput">
|
||||
<param name="batch-delay" value="50"/>
|
||||
</http-connector>
|
||||
<in-vm-connector name="in-vm" server-id="0">
|
||||
<param name="buffer-pooling" value="false"/>
|
||||
</in-vm-connector>
|
||||
<http-acceptor name="http-acceptor" http-listener="default"/>
|
||||
<http-acceptor name="http-acceptor-throughput" http-listener="default">
|
||||
<param name="batch-delay" value="50"/>
|
||||
<param name="direct-deliver" value="false"/>
|
||||
</http-acceptor>
|
||||
<in-vm-acceptor name="in-vm" server-id="0">
|
||||
<param name="buffer-pooling" value="false"/>
|
||||
</in-vm-acceptor>
|
||||
<jms-queue name="ExpiryQueue" entries="java:/jms/queue/ExpiryQueue"/>
|
||||
<jms-queue name="DLQ" entries="java:/jms/queue/DLQ"/>
|
||||
<connection-factory name="InVmConnectionFactory" entries="java:/ConnectionFactory" connectors="in-vm"/>
|
||||
<connection-factory name="RemoteConnectionFactory" entries="java:jboss/exported/jms/RemoteConnectionFactory" connectors="http-connector"/>
|
||||
<pooled-connection-factory name="activemq-ra" entries="java:/JmsXA java:jboss/DefaultJMSConnectionFactory" connectors="in-vm" transaction="xa"/>
|
||||
</server>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:wildfly:metrics:1.0" security-enabled="false" exposed-subsystems="*" prefix="${wildfly.metrics.prefix:jboss}"/>
|
||||
<subsystem xmlns="urn:jboss:domain:naming:2.0">
|
||||
<remote-naming/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:pojo:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:remoting:5.0">
|
||||
<http-connector name="http-remoting-connector" connector-ref="default" sasl-authentication-factory="application-sasl-authentication"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:request-controller:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:resource-adapters:7.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:sar:1.0"/>
|
||||
<subsystem xmlns="urn:jboss:domain:security-manager:1.0">
|
||||
<deployment-permissions>
|
||||
<maximum-set>
|
||||
<permission class="java.security.AllPermission"/>
|
||||
</maximum-set>
|
||||
</deployment-permissions>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:transactions:6.0">
|
||||
<core-environment node-identifier="${jboss.tx.node.id:1}">
|
||||
<process-id>
|
||||
<uuid/>
|
||||
</process-id>
|
||||
</core-environment>
|
||||
<recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn-status-manager"/>
|
||||
<coordinator-environment statistics-enabled="${wildfly.transactions.statistics-enabled:${wildfly.statistics-enabled:false}}"/>
|
||||
<object-store path="tx-object-store" relative-to="jboss.server.data.dir"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:undertow:14.0" default-virtual-host="default-host" default-servlet-container="default" default-server="default-server" statistics-enabled="${wildfly.undertow.statistics-enabled:${wildfly.statistics-enabled:false}}" default-security-domain="other">
|
||||
<byte-buffer-pool name="default"/>
|
||||
<buffer-cache name="default"/>
|
||||
<server name="default-server">
|
||||
<http-listener name="default" socket-binding="http" redirect-socket="https" enable-http2="true"/>
|
||||
<https-listener name="https" socket-binding="https" ssl-context="applicationSSC" enable-http2="true"/>
|
||||
<host name="default-host" alias="localhost">
|
||||
<location name="/" handler="welcome-content"/>
|
||||
<http-invoker http-authentication-factory="application-http-authentication"/>
|
||||
</host>
|
||||
</server>
|
||||
<servlet-container name="default">
|
||||
<jsp-config/>
|
||||
<websockets/>
|
||||
</servlet-container>
|
||||
<handlers>
|
||||
<file name="welcome-content" path="${jboss.home.dir}/welcome-content"/>
|
||||
</handlers>
|
||||
<application-security-domains>
|
||||
<application-security-domain name="other" security-domain="ApplicationDomain"/>
|
||||
</application-security-domains>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:webservices:2.0" statistics-enabled="${wildfly.webservices.statistics-enabled:${wildfly.statistics-enabled:false}}">
|
||||
<wsdl-host>${jboss.bind.address:127.0.0.1}</wsdl-host>
|
||||
<endpoint-config name="Standard-Endpoint-Config"/>
|
||||
<endpoint-config name="Recording-Endpoint-Config">
|
||||
<pre-handler-chain name="recording-handlers" protocol-bindings="##SOAP11_HTTP ##SOAP11_HTTP_MTOM ##SOAP12_HTTP ##SOAP12_HTTP_MTOM">
|
||||
<handler name="RecordingHandler" class="org.jboss.ws.common.invocation.RecordingServerHandler"/>
|
||||
</pre-handler-chain>
|
||||
</endpoint-config>
|
||||
<client-config name="Standard-Client-Config"/>
|
||||
</subsystem>
|
||||
<subsystem xmlns="urn:jboss:domain:weld:5.0"/>
|
||||
</profile>
|
||||
<interfaces>
|
||||
<interface name="management">
|
||||
<inet-address value="${jboss.bind.address.management:127.0.0.1}"/>
|
||||
</interface>
|
||||
<interface name="public">
|
||||
<inet-address value="${jboss.bind.address:127.0.0.1}"/>
|
||||
</interface>
|
||||
<interface name="unsecure">
|
||||
<inet-address value="${jboss.bind.address.unsecure:127.0.0.1}"/>
|
||||
</interface>
|
||||
</interfaces>
|
||||
<socket-binding-group name="standard-sockets" default-interface="public" port-offset="${jboss.socket.binding.port-offset:0}">
|
||||
<socket-binding name="ajp" port="${jboss.ajp.port:8009}"/>
|
||||
<socket-binding name="http" port="${jboss.http.port:8080}"/>
|
||||
<socket-binding name="https" port="${jboss.https.port:8443}"/>
|
||||
<socket-binding name="iiop" interface="unsecure" port="3528"/>
|
||||
<socket-binding name="iiop-ssl" interface="unsecure" port="3529"/>
|
||||
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
|
||||
<socket-binding name="management-https" interface="management" port="${jboss.management.https.port:9993}"/>
|
||||
<socket-binding name="txn-recovery-environment" port="4712"/>
|
||||
<socket-binding name="txn-status-manager" port="4713"/>
|
||||
<outbound-socket-binding name="mail-smtp">
|
||||
<remote-destination host="${jboss.mail.server.host:localhost}" port="${jboss.mail.server.port:25}"/>
|
||||
</outbound-socket-binding>
|
||||
</socket-binding-group>
|
||||
</server>
|
@ -1,11 +1,21 @@
|
||||
# PowerShell script to start JBoss EAP 8.0
|
||||
|
||||
# Configuration
|
||||
$JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-8.0"
|
||||
$JAVA_HOME = "C:\Dev2012\BUILDERS\java\jdk-17.0.9"
|
||||
# Read configuration from config.json
|
||||
$configPath = Join-Path $PSScriptRoot "config.json"
|
||||
if (-not (Test-Path $configPath)) {
|
||||
Write-Host "Error: config.json not found at $configPath" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Function to check if JBoss is already running
|
||||
function Is-JBossRunning {
|
||||
$config = Get-Content $configPath -Raw | ConvertFrom-Json
|
||||
|
||||
# Configuration from config.json
|
||||
$JBOSS_HOME = $config.jboss.jbossHome
|
||||
$JAVA_HOME = $config.jboss.javaHome
|
||||
$CONFIG_FILE = $config.jboss.configFile
|
||||
|
||||
# Function to check if JBoss is running
|
||||
function Test-JBossRunning {
|
||||
$jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
|
||||
Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" }
|
||||
return $null -ne $jbossProcess
|
||||
@ -13,7 +23,7 @@ function Is-JBossRunning {
|
||||
|
||||
# Check if Java exists
|
||||
if (-not (Test-Path $JAVA_HOME)) {
|
||||
Write-Host "Error: Java 17 not found at $JAVA_HOME" -ForegroundColor Red
|
||||
Write-Host "Error: Java not found at $JAVA_HOME" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
@ -23,8 +33,33 @@ if (-not (Test-Path $JBOSS_HOME)) {
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Check if configuration file exists
|
||||
$configFile = "$JBOSS_HOME\standalone\configuration\standalone-full-ADV360-BES-EAP_8_POSTGRES.xml"
|
||||
# Copy configuration file from local config directory
|
||||
$localConfigDir = Join-Path $PSScriptRoot "config"
|
||||
$localConfigFile = Join-Path $localConfigDir (Split-Path $CONFIG_FILE -Leaf)
|
||||
$jbossConfigDir = Join-Path $JBOSS_HOME "standalone\configuration"
|
||||
|
||||
if (Test-Path $localConfigFile) {
|
||||
Write-Host "Copying configuration file from local config directory..." -ForegroundColor Yellow
|
||||
Write-Host "From: $localConfigFile" -ForegroundColor Yellow
|
||||
Write-Host "To: $jbossConfigDir" -ForegroundColor Yellow
|
||||
|
||||
# Create backup of existing config if it exists
|
||||
$targetConfigFile = Join-Path $jbossConfigDir (Split-Path $CONFIG_FILE -Leaf)
|
||||
if (Test-Path $targetConfigFile) {
|
||||
$backupFile = "$targetConfigFile.backup"
|
||||
Write-Host "Creating backup of existing config: $backupFile" -ForegroundColor Yellow
|
||||
Copy-Item $targetConfigFile $backupFile -Force
|
||||
}
|
||||
|
||||
# Copy the new config file
|
||||
Copy-Item $localConfigFile $jbossConfigDir -Force
|
||||
} else {
|
||||
Write-Host "Warning: Local config file not found at $localConfigFile" -ForegroundColor Yellow
|
||||
Write-Host "Using existing JBoss configuration" -ForegroundColor Yellow
|
||||
}
|
||||
|
||||
# Check if configuration file exists in JBoss
|
||||
$configFile = Join-Path $jbossConfigDir (Split-Path $CONFIG_FILE -Leaf)
|
||||
if (-not (Test-Path $configFile)) {
|
||||
Write-Host "Error: Configuration file not found at $configFile" -ForegroundColor Red
|
||||
exit 1
|
||||
@ -39,7 +74,7 @@ $env:NOPAUSE = "true"
|
||||
# $env:LAUNCH_JBOSS_IN_BACKGROUND = "true"
|
||||
|
||||
# Check if JBoss is already running
|
||||
if (Is-JBossRunning) {
|
||||
if (Test-JBossRunning) {
|
||||
Write-Host "JBoss is already running!" -ForegroundColor Yellow
|
||||
exit 0
|
||||
}
|
||||
@ -47,10 +82,10 @@ if (Is-JBossRunning) {
|
||||
Write-Host "Starting JBoss EAP 8.0..." -ForegroundColor Green
|
||||
Write-Host "Using Java from: $JAVA_HOME" -ForegroundColor Yellow
|
||||
Write-Host "JBoss Home: $JBOSS_HOME" -ForegroundColor Yellow
|
||||
Write-Host "Using configuration: standalone-full-ADV360-BES-EAP_8_POSTGRES.xml" -ForegroundColor Yellow
|
||||
Write-Host "Using configuration: $CONFIG_FILE" -ForegroundColor Yellow
|
||||
|
||||
# Start JBoss in standalone mode
|
||||
$startScript = "$JBOSS_HOME\bin\standalone.bat"
|
||||
$startScript = Join-Path $JBOSS_HOME "bin\standalone.bat"
|
||||
$jvmOptions = @(
|
||||
"-DIDServer=GS",
|
||||
"-Dbtf.PathToParse=C:\Dev2012\advc0\in",
|
||||
@ -71,16 +106,16 @@ Write-Host "JVM Options: $env:JAVA_OPTS" -ForegroundColor Yellow
|
||||
Write-Host "Remote debugging enabled on port 8787" -ForegroundColor Cyan
|
||||
|
||||
# Create the command line arguments
|
||||
$cmdArgs = "-c standalone-full-ADV360-BES-EAP_8_POSTGRES.xml --debug -b 0.0.0.0 -bmanagement 0.0.0.0"
|
||||
$cmdArgs = "-c $CONFIG_FILE --debug -b 0.0.0.0 -bmanagement 0.0.0.0"
|
||||
|
||||
# Start JBoss - Modified to use Start-Process with RedirectStandardOutput
|
||||
$logFile = "$JBOSS_HOME\standalone\log\server-info.log"
|
||||
$logFile = Join-Path $JBOSS_HOME "standalone\log\server-info.log"
|
||||
$processStartInfo = @{
|
||||
FilePath = $startScript
|
||||
ArgumentList = $cmdArgs
|
||||
RedirectStandardOutput = $logFile
|
||||
RedirectStandardError = "$JBOSS_HOME\standalone\log\server_error.log"
|
||||
WorkingDirectory = "$JBOSS_HOME\bin"
|
||||
RedirectStandardError = Join-Path $JBOSS_HOME "standalone\log\server_error.log"
|
||||
WorkingDirectory = Join-Path $JBOSS_HOME "bin"
|
||||
NoNewWindow = $true
|
||||
PassThru = $true
|
||||
}
|
||||
@ -91,7 +126,7 @@ $jbossProcess = Start-Process @processStartInfo
|
||||
# Wait a few seconds to check if the process started successfully
|
||||
Start-Sleep -Seconds 10
|
||||
|
||||
if (Is-JBossRunning) {
|
||||
if (Test-JBossRunning) {
|
||||
Write-Host "JBoss started successfully!" -ForegroundColor Green
|
||||
Write-Host "Admin console will be available at: http://localhost:9990" -ForegroundColor Yellow
|
||||
Write-Host "Remote debugging is enabled on port 8787" -ForegroundColor Cyan
|
||||
|
@ -1,9 +1,19 @@
|
||||
# PowerShell script to stop JBoss EAP 8.0
|
||||
|
||||
# Configuration
|
||||
$JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-8.0"
|
||||
# Read configuration from config.json
|
||||
$configPath = Join-Path $PSScriptRoot "config.json"
|
||||
if (-not (Test-Path $configPath)) {
|
||||
Write-Host "Error: config.json not found at $configPath" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
$config = Get-Content $configPath -Raw | ConvertFrom-Json
|
||||
|
||||
# Configuration from config.json
|
||||
$JBOSS_HOME = $config.jboss.jbossHome
|
||||
|
||||
Write-Host "Stopping JBoss EAP 8.0..." -ForegroundColor Yellow
|
||||
Write-Host "JBoss Home: $JBOSS_HOME" -ForegroundColor Yellow
|
||||
|
||||
# Find and stop JBoss process
|
||||
$jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
|
||||
@ -11,7 +21,29 @@ $jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
|
||||
|
||||
if ($jbossProcess) {
|
||||
Write-Host "Found JBoss process (PID: $($jbossProcess.ProcessId))" -ForegroundColor Yellow
|
||||
Stop-Process -Id $jbossProcess.ProcessId -Force
|
||||
|
||||
# Try graceful shutdown first
|
||||
Write-Host "Attempting graceful shutdown..." -ForegroundColor Yellow
|
||||
$jbossCli = Join-Path $JBOSS_HOME "bin\jboss-cli.bat"
|
||||
$cliCommand = "--connect --command=:shutdown"
|
||||
|
||||
try {
|
||||
Start-Process -FilePath $jbossCli -ArgumentList $cliCommand -Wait -NoNewWindow
|
||||
Start-Sleep -Seconds 5 # Give it time for graceful shutdown
|
||||
|
||||
# Check if process is still running
|
||||
$processStillRunning = Get-Process -Id $jbossProcess.ProcessId -ErrorAction SilentlyContinue
|
||||
|
||||
if ($processStillRunning) {
|
||||
Write-Host "Graceful shutdown failed, forcing process termination..." -ForegroundColor Yellow
|
||||
Stop-Process -Id $jbossProcess.ProcessId -Force
|
||||
}
|
||||
}
|
||||
catch {
|
||||
Write-Host "Graceful shutdown failed, forcing process termination..." -ForegroundColor Yellow
|
||||
Stop-Process -Id $jbossProcess.ProcessId -Force
|
||||
}
|
||||
|
||||
Write-Host "JBoss process stopped" -ForegroundColor Green
|
||||
} else {
|
||||
Write-Host "No JBoss process found running" -ForegroundColor Yellow
|
||||
@ -19,3 +51,13 @@ if ($jbossProcess) {
|
||||
|
||||
# Wait a moment to ensure process is fully stopped
|
||||
Start-Sleep -Seconds 2
|
||||
|
||||
# Verify JBoss is stopped
|
||||
$jbossStillRunning = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
|
||||
Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" }
|
||||
|
||||
if ($jbossStillRunning) {
|
||||
Write-Host "Warning: JBoss process is still running!" -ForegroundColor Red
|
||||
} else {
|
||||
Write-Host "Confirmed: JBoss is fully stopped" -ForegroundColor Green
|
||||
}
|
||||
|
@ -1,28 +1,59 @@
|
||||
$sourceFile = "C:\Dev2012\BUILDERS\jboss-eap-8.0\standalone\deployments\adv360-ear.ear"
|
||||
$destinationPath = ".\arm_am-unpacked"
|
||||
# PowerShell script to unpack EAR file
|
||||
|
||||
# Read configuration from config.json
|
||||
$configPath = Join-Path $PSScriptRoot "config.json"
|
||||
if (-not (Test-Path $configPath)) {
|
||||
Write-Host "Error: config.json not found at $configPath" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
$config = Get-Content $configPath -Raw | ConvertFrom-Json
|
||||
|
||||
# Get paths from config
|
||||
$sourceFile = Join-Path $config.jboss.jbossHome "standalone\deployments\adv360-ear.ear"
|
||||
$destinationPath = $config.ear.unpackDir
|
||||
|
||||
Write-Host "Using configuration:" -ForegroundColor Yellow
|
||||
Write-Host " Source EAR: $sourceFile" -ForegroundColor Yellow
|
||||
Write-Host " Destination: $destinationPath" -ForegroundColor Yellow
|
||||
|
||||
# Verify source file exists
|
||||
if (-not (Test-Path -Path $sourceFile)) {
|
||||
Write-Host "Error: Source EAR file not found at $sourceFile" -ForegroundColor Red
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Remove destination directory if it exists
|
||||
if (Test-Path -Path $destinationPath) {
|
||||
Remove-Item -Path $destinationPath -Recurse -Force
|
||||
Write-Host "Removed existing directory: $destinationPath"
|
||||
Write-Host "Removed existing directory: $destinationPath" -ForegroundColor Yellow
|
||||
}
|
||||
|
||||
# Create destination directory
|
||||
if (-not (Test-Path -Path $destinationPath)) {
|
||||
New-Item -ItemType Directory -Path $destinationPath -Force
|
||||
New-Item -ItemType Directory -Path $destinationPath -Force | Out-Null
|
||||
Write-Host "Created destination directory: $destinationPath" -ForegroundColor Yellow
|
||||
}
|
||||
|
||||
# Rename .ear to .zip temporarily to use Expand-Archive
|
||||
$tempZipPath = $sourceFile -replace '\.ear$', '.zip'
|
||||
Copy-Item -Path $sourceFile -Destination $tempZipPath
|
||||
# Try using 7-Zip first, fall back to zip method if not available
|
||||
$7zPath = "C:\Program Files\7-Zip\7z.exe"
|
||||
if (Test-Path $7zPath) {
|
||||
Write-Host "Using 7-Zip to extract EAR..." -ForegroundColor Yellow
|
||||
Start-Process -FilePath $7zPath -ArgumentList "x", "`"$sourceFile`"", "-o`"$destinationPath`"", "-y" -Wait -NoNewWindow
|
||||
} else {
|
||||
Write-Host "7-Zip not found, using PowerShell Expand-Archive..." -ForegroundColor Yellow
|
||||
# Rename .ear to .zip temporarily to use Expand-Archive
|
||||
$tempZipPath = $sourceFile -replace '\.ear$', '.zip'
|
||||
Copy-Item -Path $sourceFile -Destination $tempZipPath
|
||||
|
||||
# Extract the EAR contents
|
||||
Expand-Archive -Path $tempZipPath -DestinationPath $destinationPath -Force
|
||||
|
||||
# Clean up temporary zip file
|
||||
Remove-Item -Path $tempZipPath
|
||||
}
|
||||
|
||||
# Extract the EAR contents
|
||||
Expand-Archive -Path $tempZipPath -DestinationPath $destinationPath -Force
|
||||
|
||||
# Clean up temporary zip file
|
||||
Remove-Item -Path $tempZipPath
|
||||
|
||||
Write-Host "EAR file extracted to $destinationPath"
|
||||
Write-Host "EAR file extracted to $destinationPath" -ForegroundColor Green
|
||||
|
||||
# Function to unpack archive files (war/ejb)
|
||||
function Expand-JavaArchive {
|
||||
@ -39,10 +70,19 @@ function Expand-JavaArchive {
|
||||
New-Item -ItemType Directory -Path $destinationPath -Force
|
||||
}
|
||||
|
||||
# Extract contents
|
||||
Expand-Archive -Path $tempZipPath -DestinationPath $destinationPath -Force
|
||||
# Try using 7-Zip first, fall back to zip method if not available
|
||||
if (Test-Path $7zPath) {
|
||||
Write-Host "Using 7-Zip to extract $archivePath..." -ForegroundColor Yellow
|
||||
Start-Process -FilePath $7zPath -ArgumentList "x", "`"$tempZipPath`"", "-o`"$destinationPath`"", "-y" -Wait -NoNewWindow
|
||||
} else {
|
||||
Write-Host "7-Zip not found, using PowerShell Expand-Archive..." -ForegroundColor Yellow
|
||||
# Extract contents
|
||||
Expand-Archive -Path $tempZipPath -DestinationPath $destinationPath -Force
|
||||
}
|
||||
|
||||
# Clean up temporary zip file
|
||||
Remove-Item -Path $tempZipPath
|
||||
Write-Host "Extracted $archivePath to $destinationPath"
|
||||
Write-Host "Extracted $archivePath to $destinationPath" -ForegroundColor Green
|
||||
}
|
||||
|
||||
# Find and extract WAR and EJB files
|
||||
|
Loading…
x
Reference in New Issue
Block a user