]
Brian Stansberry updated WFLY-11190:
------------------------------------
Estimated Difficulty: High (was: Low)
SAR jboss-service MBean start with @Postconstruct annotation called
twice.
--------------------------------------------------------------------------
Key: WFLY-11190
URL:
https://issues.jboss.org/browse/WFLY-11190
Project: WildFly
Issue Type: Bug
Components: Server
Affects Versions: 10.1.0.Final
Reporter: Wozza Xing
Assignee: Jason Greene
Priority: Minor
Start and stop are "magic" method names for jboss services.
As a result the method is invoked twice.
I would expect the object has already started, so why call it again.
This is the same for Predestroy and stop() method.
In WFLYSRV0049: WildFly Full 10.1.0.Final (WildFly Core 2.2.0.Final) starting
@PostConstruct
public void start() {
logger.info(this.hashCode() + "configuration for " + this.getBaseDir() + "
" + System.getProperties().getProperty("jboss.server.config.dir"));
}
Output is
(ServerService Thread Pool -- 69) 2034435521 configuration for
/opt/wildfly/standalone/configuration /opt/wildfly/standalone/configuration
(ServerService Thread Pool -- 69) 2034435521 configuration for
/opt/wildfly/standalone/configuration /opt/wildfly/standalone/configuration