I am seeing this log message when using the create-domain command with GlassFish 3.1.1
No domain initializers found, bypassing customization step
What can be accomplished with domain initializers? Is there any documentation?
Examples of create-domain usages with logging output is shown here,
http://docs.oracle.com/cd/E18930_01/html/821-2433/create-domain-1.html
The reference manual reports:
I did found no documentation about customization but based on the source I can figure out that domain initializers are used to customize domain.xml during domain creation.
You can find source here.
the
getInitialConfigmethod returns aContainerinstance.Containerinterface extendsorg.jvnet.hk2.config.ConfigBeanProxyinterface that appears to be a proxy toDomclass:I figure out that hk2 is the key to understand how domain customization works.
I hope someone else can give you some more useful info.