1,292 questions
2
votes
1
answer
397
views
Managed bean not resolved in EL expression after Jakarta migration
I'm currently trying to upgrade a web application deployed in Apache Tomcat from Java EE 8 to Jakarta 10. The application uses Spring Web Flow, facelets, Mojarra Faces and JBoss Weld as CDI. I'll ...
1
vote
0
answers
52
views
Spring Webflow application doesn't work on Multi node OpenLiberty with session externalized to Redis cache
We are trying to port our Spring Weblflow application (Websites) from WebSphere App Server to OpenLiberty WebProfile 8 as part of the Cloud Migration program. Before kick off, as PoC we built a very ...
2
votes
0
answers
49
views
Thymeleaf SpEL null on object that is not supposed to be null
I'm currently upgrading the dependencies on a company project, and thymeleaf ended up being one of the dependencies I had to upgrade, from thymeleaf2 to thymeleaf3.
Right now, a lot of old thymeleaf ...
0
votes
0
answers
81
views
Bean conflict in spring flow
I try to make a project with spring flow and jsf.
I use gradle as build system with the following build.gradle:
plugins {
id 'java'
id 'war'
id 'org.springframework.boot' version '3.1....
1
vote
1
answer
125
views
Binding Select List Objects in Spring Webflow
I have a select list bound to Java POJOs on a thymeleaf form. I want to populate the model with the object selected from this list.
The form below works perfectly fine when using spring boot ...
0
votes
0
answers
1k
views
Spring Web Flow How to handle flow exception ( org.springframework.webflow.execution.repository.snapshot.SnapshotNotFoundException ) and redirect?
I have similar code inline with this repo, in case of normal exception I'm able to redirect to the designated page as expected using global exception as follows
<global-transitions>
<...
1
vote
0
answers
644
views
How to handle FlowException in spring webflow
Objective is to redirect if i come across flow exception
Im using following for handling rest of the exception
<global-transitions>
<transition on-exception="java.lang.Exception" to=...
-1
votes
2
answers
54
views
How to not redirect page when authentication fail - JSP & Spring MVC
I have a JSP form as below,
<form method="post" id="loginForm" action="<c:url value='/login'/>">
<fieldset>
...
1
vote
1
answer
1k
views
Unable to Remove ;jsessionid in a Spring Boot / Web Flow Application's URL when Deployed to Tomcat 8.5
I'm working on a Java application where a user registers a password for his/her account. The following are being used:
Spring Boot
Spring MVC
Spring Web Flow
Spring Security
Thymeleaf
Interceptor (...
1
vote
1
answer
3k
views
Handling checked exception in Mono flow
Not sure how to handle checked exception in the Mono flow.
return Mono.when(monoPubs)
.zipWhen((monos) -> repository.findById(...))
.map((tuple) -> tuple.getT2())
...
1
vote
0
answers
413
views
How to access url from event attributes and perform external redirect in spring webflow
I have a use case where I need to redirect to an external URL via spring webflow, the url might change every time the user clicks on the link. I am trying to use externalRedirect within the flow.xml ...
0
votes
1
answer
92
views
Spring Webflow for Grails 4
I am migrating from Grails 1.1 to Grails 4.0.11. we have used Spring Webflow in it, but it never works in Grails 4. Is there any solution to implement Spring Webflow in Grails4?
1
vote
0
answers
223
views
Action events are not caught in the flow using Spring web flow + JSF
The flow is working and I can start it and access the first view state activation but when I press the button which it should trigger an action event to transit to the next state it doesn't work.
I ...
1
vote
1
answer
577
views
Class Specified in Method signature of TLD function is not found - JasperException
I am migrating a project from legacy spring to springboot. Project uses Spring Webflow and plan to keep the configurations intact for webflow and port the project to springboot by updating the project ...
0
votes
1
answer
238
views
Handling Invalid _eventId in CAS 6.X
When Spring Webflow receives an invalid eventId it throws a NoMatchingTransitionException. This, in turn, throws a 500 error which is detected by vulnerability scanners. CAS 6.X uses a custom webflow ...