我想在自定义操作中添加说明,但似乎install4J找不到我的BeanInfo。
我尝试了install4J附带的customCode-sample,它也不起作用。
我的代码分布在一个jar中。我试图将其添加到扩展文件夹,并在“自定义代码”中引用它。
豆角,扁豆:

package example;

import com.install4j.api.actions.AbstractInstallAction;
import com.install4j.api.context.InstallerContext;
import com.install4j.api.context.UserCanceledException;

public class MyAction extends AbstractInstallAction{

  private static final long serialVersionUID = 2655170043113696434L;

  @Override
  public boolean install(InstallerContext context) throws UserCanceledException {
    return false;
  }

}


BeanInfo:

package example;

import com.install4j.api.beaninfo.ActionBeanInfo;

public class MyActionBeanInfo extends ActionBeanInfo {

  protected MyActionBeanInfo() {
    super("My Action", "Execute my Code", "Other", false, true, 0, MyAction.class);
  }

}

Manifest:
Name: example/MyAction.class
Install-Action: true


我想念什么?

最佳答案

您的MyActionBeanInfo类的构造函数受到保护,内省者将无法实例化它。如果将其公开,它应该可以工作。


  我试图将其添加到扩展文件夹中,并在“自定义代码”中引用它


如果定制代码是项目的一部分,则应在“安装程序->定制代码和资源”步骤上添加具有已编译类的JAR文件。

添加操作时,选择“自定义代码->在自定义代码中搜索操作”,然后应以正确的名称显示您的操作。

java - install4J 7.0.6找不到我的BeanInfo-LMLPHP

10-07 13:09