Spring Jaxb2Marshaller + contextPath + tomcat, встроенный в броски maven - PullRequest
1 голос
/ 04 февраля 2011

Я использую Spring Jaxb2Marshaller (без веб-сервисов), чтобы разобрать некоторые xml.XML-код является code-gen через maven-jaxb-plugin, и я создаю экземпляр Jaxb2Marshaller весной с помощью:

<bean id="unmarshaller" class="...Jaxb2Marshaller" p:contextPath="my.package.path" />  

Затем начните с:

mvn clean package
mvn tomcat:run 

Первый созданный unmarshaller созданхорошо, второй бросает с org.springframework.oxm.jaxb.JaxbSystemException, потому что он не может найти ObjectFactory (который генерируется maven-jaxb-plugin, и я убедился, что на самом деле присутствует в jar, в правильномпакет).

На самом деле у меня есть два unmarshallers (хотя я пробовал использовать один unmarshaller и contextPath с путями пакетов, разделенными двоеточиями, с одинаковыми результатами).

Я не думаю, что это, как правило, проблема с пружиной или моей конфигурацией, потому что, если я разверну в полном контейнере Tomcat, он будет работать нормально.Я заметил, что maven помещает tomcat в мою папку project / target / tomcat, и есть некоторые различия, такие как отсутствие каталога lib.Я на самом деле не знаю, в чем все различия между встроенным tomcat и обычной установкой.

Может кто-нибудь объяснить:
1) в чем отличие встроенного tomcat от обычной установки
2) при наличии известных ограничений
3), если его можно настроить для правильной работы в этой ситуации

Полная трассировка стека:

SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'unmarshaller' defined in class path resource [spring.xml]: Invocation of init method failed; nested exception is org.springframework.oxm.jaxb.JaxbSystemException: "my.package.path" doesnt contain ObjectFactory.class or jaxb.index; nested exception is javax.xml.bind.JAXBException: "my.package.path" doesnt contain ObjectFactory.class or jaxb.index
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1338)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:473)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164)
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429)
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728)
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380)
    at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:255)
    at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:199)
    at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:45)
    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:4135)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4630)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:785)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:445)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:825)
    at org.codehaus.mojo.tomcat.AbstractRunMojo.startContainer(AbstractRunMojo.java:558)
    at org.codehaus.mojo.tomcat.AbstractRunMojo.execute(AbstractRunMojo.java:255)

1 Ответ

2 голосов
/ 02 марта 2011

Для тех, кто сталкивается с этим, я в конечном итоге решил проблему, используя свойство classesToBeBound вместо contextPath.Причина, по которой я изначально избегал classesToBeBound, заключалась в том, что я решил указать каждый отдельный класс в модели в списке classesToBeBound, а это не так.Вы просто указываете класс с аннотацией @XmlRootElement.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...