什么是GlassFish 3.1.x域名初始化程序?

时间:2012-07-26 10:37:22

标签: glassfish-3

在使用带有GlassFish 3.1.1

的create-domain命令时,我看到了这条日志消息
No domain initializers found, bypassing customization step

使用域名初始化程序可以实现什么?有没有文件?

此处显示了具有日志记录输出的create-domain用法示例

http://docs.oracle.com/cd/E18930_01/html/821-2433/create-domain-1.html

1 个答案:

答案 0 :(得分:4)

参考手册报告:

  

如果在as-install / modules中的JAR文件中找到域自定义程序   运行create-domain子命令时的目录,定制程序   正在处理中。域定制器是一个实现它的类   DomainInitializer接口。

我没有找到关于自定义的文档,但根据源我可以看出域初始化器用于在域创建期间自定义domain.xml。

package org.glassfish.api.admin.config;

import org.jvnet.hk2.annotations.Contract;
import org.glassfish.api.admin.config.Container;

/**
 * Marker interface to mark inhabitants that require some minimal initial 
 * configuration to be inserted into a newly create domain's domain.xml
 *
 * @author Nandini Ektare
 */
@Contract
public interface DomainInitializer {
    /**
     * The actual initial config that needs to be inserted into
     * the fresh domain.xml
     *
     * See {@link Attribute#value()} for how the default value is inferred.
     *
     */
    public <T extends Container> T getInitialConfig(DomainContext initialCtx);
}

您可以找到来源here

getInitialConfig方法返回Container个实例。 Container接口扩展org.jvnet.hk2.config.ConfigBeanProxy接口,该接口似乎是Dom类的代理:

/**
 * Marker interface that signifies that the interface
 * is meant to be used as a strongly-typed proxy to
 * {@link Dom}. 
 *
 * <p>
 * To obtain the Dom object, use {@link Dom#unwrap(ConfigBeanProxy)}.
 * This design allows the interfaces to be implemented by other code
 * outside DOM more easily.
 *
 * @author Kohsuke Kawaguchi
 * @see Dom#unwrap(ConfigBeanProxy)
 * @see DuckTyped
 * @see Element
 * @see Attribute
 */
public interface ConfigBeanProxy {

我发现hk2是理解域名自定义如何运作的关键。

我希望其他人能为您提供更多有用的信息。