-
Notifications
You must be signed in to change notification settings - Fork 326
WAR deployment to Tomcat 9 throws IllegalStateException exception #165
Comments
Relevant bug and suggested fix in spring.io: https://jira.spring.io/browse/SPR-12109 doesn't work on Tomcat 9. |
@khteh You're referencing an apparently known bug in Spring about this. So sounds like they are working on a fix for that one. What do you expect by opening this issue here then? Is there something now that needs to be updated here to fix it? |
@oliemansm, can you provide a link to the known issue in spring? Thanks. |
@oliemansm I have the same issue by WAR deploy with Tomcat 8.5.35 |
@khteh I'm referring to the known issue and link you reported here yourself: https://jira.spring.io/browse/SPR-12109 |
Hi, I don't know if this info could be useful
This is my configuration:
|
@shinobi81 Your issue should be fixed with the next release 5.7.2. And hopefully that will fix the issue for this original issue regarding WAR deployment as well, but not sure about that. |
When is the estimated release date?
…On Sat, Mar 30, 2019, 15:46 Michiel Oliemans ***@***.***> wrote:
@shinobi81 <https://github.com/shinobi81> Your issue should be fixed with
the next release 5.7.2. And hopefully that will fix the issue for this
original issue regarding WAR deployment as well, but not sure about that.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#165 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ADsS-9iEVK-rrMWWPcO-vRd9bT8wHFI7ks5vbxZQgaJpZM4Y2sRN>
.
|
This weekend, maybe today even. Just going through the several projects to see if there are any issues I can fix and include. If you have a clone of the project you could pull in the latest changes and build a local snapshot to verify if it's working for you. |
Hello~ I'm using dependencies below, but got error: spring-boot version : 2.1.4.RELEASE
|
I avoided the error in the following ways. -@SpringBootApplication
+@SpringBootApplication(exclude = {
+ GraphQLWebsocketAutoConfiguration.class
+})
public class Application extends SpringBootServletInitializer {
...
} |
Seems issue resolved after I upgrade spring boot from 2.1.5 to 2.1.6. |
Good to hear @sutra! |
@khteh Can you verify that upgrading Spring Boot to 2.1.6.RELEASE fixes the issue for you too? |
Ok. I will verify and close it if it works. Recently changed to .net core
role.
…On Fri, Jun 28, 2019, 02:02 Michiel Oliemans ***@***.***> wrote:
@khteh <https://github.com/khteh> Can you verify that upgrading Spring
Boot to 2.1.6.RELEASE fixes the issue for you too?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#165?email_source=notifications&email_token=AA5RF637RALIZZT5TP3G4CDP4T6ERA5CNFSM4GG2YRG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGODYX5FBQ#issuecomment-506450566>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA5RF65WSXGX4MVF3WLSC7TP4T6ERANCNFSM4GG2YRGQ>
.
|
Seems not works every time.
in Now the question is why the |
Tomcat 8.5.35, Spring Boot 2.2.1, graphql-spring-boot-starter 5.11.0 |
Tomcat 9.0.31 should fix this bug |
So proven solution is to set |
IllegalStateException thrown when GraphQL project built as WAR deployed to Tomcat 9:
Relevant bug and suggested fix in spring.io: https://jira.spring.io/browse/SPR-12109
The text was updated successfully, but these errors were encountered: