Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/logging/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Logging 无法在Glassfish 4.1上部署Spring启动应用程序_Logging_Deployment_Spring Boot_Glassfish 4.1 - Fatal编程技术网

Logging 无法在Glassfish 4.1上部署Spring启动应用程序

Logging 无法在Glassfish 4.1上部署Spring启动应用程序,logging,deployment,spring-boot,glassfish-4.1,Logging,Deployment,Spring Boot,Glassfish 4.1,我已经创建了一个Spring启动应用程序(WebServiceSOAP)。通过Spring Boot中集成的tomcat,一切正常,应用程序运行良好。 当我试图在战争中打包并部署到Glassfish 4.1时,我遇到了一个奇怪的错误 我的maven配置: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w

我已经创建了一个Spring启动应用程序(WebServiceSOAP)。通过Spring Boot中集成的tomcat,一切正常,应用程序运行良好。 当我试图在战争中打包并部署到Glassfish 4.1时,我遇到了一个奇怪的错误

我的maven配置:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <!-- Your own application should inherit from spring-boot-starter-parent -->
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.3.0.RELEASE</version>
    </parent>
    <artifactId>MyWS</artifactId>
    <groupId>fr.companie</groupId>
    <name>myws</name>
    <description>Spring Boot Data JPA Project</description>
    <version>1.3</version>
    <organization>
        <name>some org</name>
    </organization>

    <packaging>${packaging.type}</packaging>

    <properties>
        <maven.compiler.source>1.7</maven.compiler.source>
        <maven.compiler.target>1.7</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- for glassfish bug A mettre dans profil prod -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-freemarker</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-velocity</artifactId>
        </dependency>





        <!-- integrate Spring with JAX-WS (cxf) -->
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-frontend-jaxws</artifactId>
            <version>3.1.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.cxf</groupId>
            <artifactId>cxf-rt-transports-http</artifactId>
            <version>3.1.4</version>
        </dependency>

        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.10</version>
        </dependency>
        <dependency>
            <groupId>com.oracle</groupId>
            <artifactId>ojdbc6</artifactId>
            <version>11.2.0.4</version>
        </dependency>

    </dependencies>


    <profiles>
        <profile>
            <id>production</id>
            <properties>
                <packaging.type>war</packaging.type>
            </properties>
            <dependencies>
                <dependency>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                    <scope>provided</scope>
                </dependency>

            </dependencies>
            <build>
                <finalName>${project.name}</finalName>
                <plugins>
                    <plugin>
                        <artifactId>maven-war-plugin</artifactId>
                        <configuration>
                            <packagingExcludes>**/*.sql</packagingExcludes>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>

        <profile>
            <id>developpement</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
            <properties>
                <packaging.type>jar</packaging.type>
            </properties>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.springframework.boot</groupId>
                        <artifactId>spring-boot-maven-plugin</artifactId>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>
我尝试添加jboss日志依赖项和log4j sl4j等一个依赖项,但没有成功(


救命:)

玻璃鱼中的虫子。4.1.1版本中的修复在我的例子中,这个错误消息隐藏了hibernate 5和jboss日志之间的不兼容

问题是spring boot(3.3.0.Final)提供的jboss日志记录版本被glassfish库(3.1.3-GA)中“modules”目录下的旧版本覆盖

解决方案是在webapp的“web-INF”文件夹下添加一个“glassfish web.xml”文件,其中包含以下内容(如中所建议)



这确保了项目库而不是服务器库的加载。更改后,spring boot项目在glassfish上完美地运行。

查看(简要)日志,Tomcat正在启动,而不是glassfish。谢谢,我没有意识到嵌入式Tomcat仍然在启动!你的评论帮助我理解我的问题:)什么是出于兴趣的bug?顺便说一句,为什么您的产品配置文件中有spring boot starter tomcat依赖项?错误是这样的:对于spring启动程序tomcat依赖项,我遵循spring文档中关于war部署的说明:即使在4.1.1中,我也无法部署。在4.1.1中,glassfish接受部署,但日志中仍然存在相同的错误。我顺便说一下,使用tomcat.GF的ISSU错误地假设类应该在类路径中,因为它们被Spring Boot自动配置注释引用(Spring Boot通过检查类路径上是否存在类来自动配置内容)。唯一的解决办法是添加GF抱怨的依赖项。如果你不用部署在Glassfish上就能脱身,那就太好了,因为这会让事情变得更容易。
remote failure: Error occurred during deployment: 
Exception while loading the app : java.lang.IllegalStateException: 
ContainerBase.addChild: start: org.apache.catalina.LifecycleException: org.apache.catalina.LifecycleException: 
org.springframework.context.ApplicationContextException: Unable to start embedded container;
 nested exception is org.springframework.beans.factory.BeanCreationException: 
 Error creating bean with name 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration': 
 Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: 
 Could not autowire field: private org.springframework.boot.autoconfigure.web.ServerProperties 
 org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration.server; 
 nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'serverProperties'
 defined in class path resource [org/springframework/boot/autoconfigure/web/ServerPropertiesAutoConfiguration.class]: 
 Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: 
 Could not initialize class org.jboss.logging.LoggerProviders. Please see server.log for more details.
Command deploy failed.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app>
     <class-loader delegate="false"/>
</glassfish-web-app>