Home
Analytics
Jetty does not start up with Birt Runtime
alijay
<div>
<p>My task is to integrate Birt with Spring MVC webapp, I am using embedded jetty server. As soon as I add dependencies for Birt Runtime jetty does not start and gets stuck on:</p>
<pre class="_prettyXprint">
2014-07-10 01:50:02.239:INFO:oejs.Server:main: jetty-9.0.0.RC2
2014-07-10 01:50:06.636:INFO:oejpw.PlusConfiguration:main: No Transaction manager found - if your webapp requires one, please configure one.
</pre>
These are the pom dependencies I am using:
<pre class="_prettyXprint">
<dependency>
<groupId>org.eclipse.birt.runtime</groupId>
<artifactId>org.eclipse.birt.runtime</artifactId>
<version>4.3.0</version>
<exclusions>
<exclusion>
<artifactId>org.apache.poi</artifactId>
<groupId>org.eclipse.birt.runtime</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
</pre>
<p>As soon as I take these dependencies off, jetty starts the webapp as normal.</p>
<p> </p>
<p>Could anyone suggest, whats wrong with this or any starting point to get Birt integreted with Spring MVC (I am fed up, been doing research for last 3 days)</p>
<p> </p>
<p>Any help would be much appreciated.</p>
<p> </p>
<p>Many thanks</p>
</div>
<p> </p>
Find more posts tagged with
Comments
mwilliams
I'm assuming you've seen this article?<br><br><a data-ipb='nomediaparse' href='
http://spring.io/blog/2012/01/30/spring-framework-birt'>http://spring.io/blog/2012/01/30/spring-framework-birt</a><br><br>Let
me know.
alijay
<p>Yes I have seen this, and many others, but couldn't find any solution. My problem is strange, without adding a line of code related to birt.<br>
I just added the dependencies of birt, and tried firing up jetty to see if my web app starts, but it gets stuck on the log I've posted in my main post.</p>
<p> </p>
<p>Thanks</p>
mwilliams
You may have seen this, but there are several posts in stackoverflow about this error in general:<br><br><a data-ipb='nomediaparse' href='
http://stackoverflow.com/questions/15294648/there-are-two-questions-when-i-start-jetty'>http://stackoverflow.com/questions/15294648/there-are-two-questions-when-i-start-jetty</a><br><br>Most
just say it's a warning message that you an ignore, but you're saying that your application breaks because of it, right?
alijay
<p>Yes I've seen that Indeed, that message is not issue, that's for informational purpose and I got rid of that.<br>
My problem is very simple, as soon as I add Birt dependencies I mentioned above, jetty hang on that message I mentioned.<br><br>
I'm looking into again, until then if you come accross to any solution point, do let me know please.</p>
<p> </p>
<p>Many thanks</p>
mwilliams
Will do. If you can post a simple example of your setup that I can run and test, I will.