将Jhipster APP部署到Wildfly

时间:2018-04-13 21:29:45

标签: spring-boot deployment wildfly jhipster

我正在尝试将一个JHipster应用程序部署到wildfly 12但是我收到以下错误

  

引起:org.springframework.beans.factory.BeanCreationException:在VFS资源中定义名为'loggingConfiguration'的bean时出错

我需要做什么才能进行此部署?

1 个答案:

答案 0 :(得分:0)

在Logtash配置的LoggingConfiguration bean中,jHipster尝试在运行时将ILoggerFactory实例强制转换为LoggerContext(ch.qos.logback.classic.LoggerContext)。

private LoggerContext context = (LoggerContext) LoggerFactory.getILoggerFactory();

将JHipster应用程序部署到Wildfly时,可以通过在LoggingConfiguration类中对其进行自定义来跳过此操作。

参考(第35行):https://github.com/jhipster/jhipster-sample-app/blob/master/src/main/java/io/github/jhipster/sample/config/LoggingConfiguration.java