I am trying to setup a simple JSF login using Jakarta EE 8 Security, I have implemented the login page as a custom form as follows: @ApplicationScoped @CustomFo
Controller public String dummyAction(@Valid @ModelAttribute DummyInputData inputData) { return "success"; } Entity public class DummyInputData {
I am trying a simple websocket application using Jakarta EE9 and JSF 3.0 on a glassfish 6.2.5 server. When I run it, messages are not received, when the server
I am new to spring5 and I saw that in order to learn spring well, first, it is better to learn a little JEE and become more familiar with its basics, so I have
What is the difference between @EJB of JEE and @Autowired of Spring Framework? Are those the same thing? And if not, which are the differencies? I have seen t
while updating from Wildfly version 24 to version 26 I found an anoying change within REST. If I post with curl some data, it is just not received on the server
plz I don't know wath is the exact problem in the code if I add Scheduled annotatiçon in my code suddenly this error appears if you have any soulustion p
I'm using accordionPanel in Primefaces. When I refresh the page the order changes! For example: I have 1,2,3 then they become 2,3,1 or 3,2,1 ! The order of the
I still having the same problem with glassfish !! I've changed the port and executed the command as admin but it doesn't work.. I also tried the command : asad
Java 9 deprecated six modules that contain Java EE APIs and they are going to be removed soon: java.activation with javax.activation package java.corba with ja
I have deployed the the java webapp on the server successfully with desired changes in the standalone.xml file. for your information, OS platform is Windows 10
I am experimenting with Jakarta EE and Jakarta Faces (JSF). I just made a CDI named session scoped bean (as JSF managedBean's are deprecated now), and was wonde
I got a dataTable and I am trying to add entries to the backing ArrayList of the given table. SelectedStep is null after the component is loaded. All Getters an
I got a problem related to Firebase and Java EE. I'm currently writing some Java servlets for my project and I'm using Firebase the first time because I wanted
I'm new in development of Java EE applications and I'm really confused about this. I've found so many answers but I can't resolve my problem. This is the error
I updated my java project with the latest Java JDK and Tomcat 10. The new libraries use jakarta and you need to rename all your javax. to jakarta... The librari
I want to accomplish the same thing as this question: Disable automatic Wadl Generation for OPTIONS request, but we don't have a web.xml file. We also make use
So I have a small application (not running in a web container) that uses some javax.* classes running on jdk8. The time has come to upgrade to jdk17. So I thoug
How do I implement a service inside a war-container deployed on wildfly that is able to gracefully shutdown? I have the following example code: SomeService.jav
I have an app with multiple user types (roles), each stored in different tables in the same SQL DB and each has its own login page. To implement this using Jaka