开发者社区> 问答> 正文

Jboss启动Spring应用时启动到一半没反应了

使用maven构建的Spring应用,在Jetty下运行正常,部署到JBoss AS 5的时候,启动到一半就卡住了(没反应了),各位帮忙看看,有遇到同样问题的,帮忙回答一下,谢谢~
2014-11-27 20:08:30,294 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'courseCategoryService' of type [class com.able.myuni.service.basic.impl.CourseCategoryServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,303 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'courseTermDao' of type [class com.able.myuni.dao.basic.impl.CourseTermDaoImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,307 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'courseTermService' of type [class com.able.myuni.service.basic.impl.CourseTermServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,316 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'labelDao' of type [class com.able.myuni.dao.commons.impl.LabelDaoImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,321 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'labelService' of type [class com.able.myuni.service.commons.impl.LabelServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,330 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'courseLabelDao' of type [class com.able.myuni.dao.basic.impl.CourseLabelDaoImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,335 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'courseLabelService' of type [class com.able.myuni.service.basic.impl.CourseLabelServiceImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2014-11-27 20:08:30,345 INFO STDOUT 20:08:30 [main] INFO org.springframework.web.context.support.XmlWebApplicationContext - Bean 'schoolDao' of type [class com.able.myuni.dao.school.impl.SchoolDaoImpl] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

展开
收起
a123456678 2016-03-17 14:46:49 2582 0
1 条回答
写回答
取消 提交回答
  • <dependency>
                <groupId>org.apache.poi</groupId>
                <artifactId>poi-ooxml</artifactId>
                <exclusions>
                    <!-- 此包会导致JBoss启动到一半时无反应 -->
                    <exclusion>
                        <groupId>stax</groupId>
                        <artifactId>stax-api</artifactId>
                    </exclusion>
                    <!-- 此包导致JBoss启动时报错 -->
                    <exclusion>
                        <groupId>xml-apis</groupId>
                        <artifactId>xml-apis</artifactId>
                    </exclusion>
                </exclusions>
            </dependency>
    
    2019-07-17 19:05:23
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
云栖社区特邀专家徐雷Java Spring Boot开发实战系列课程(第20讲):经典面试题与阿里等名企内部招聘求职面试技巧 立即下载
微服务架构模式与原理Spring Cloud开发实战 立即下载
阿里特邀专家徐雷Java Spring Boot开发实战系列课程(第18讲):制作Java Docker镜像与推送到DockerHub和阿里云Docker仓库 立即下载

相关实验场景

更多