JSP + Servlets + EJB: Java EE 6 & GlassFish 3 using NetBeans 6.9 (Part 1 of 5)
Uploader Comments (arungupta)
All Comments (22)
-
thank you my friend
-
Thank you Mr.Gupta.
-
Not sure what oracle will do to glassfish
-
@tembehval This also happened to me! Did you solve it??
-
Hello, Thanks very much for a nice tutorial , I have a question that can you help me in a web application to enter data in text feild of jsp and then data should save in a text file. I have 2 java classes and jsps to enter the data in the text boxes. The sevlet code is a bit tricky for me. Could you give me any advise. ?
Thanks
-
Good tutor. Bit I just looking for the same of intellij IDEA with Glassfish integration.
Anyway thanks.
-
@lohiashailendra Oh, I'm sorry for my bad voting... it was accidentally.
-
glassfish unit test No EJBContainer provider available
-
Mr Arungupta... After a very long search, I found your tutorial. Honestly, worth spending time. Please please, add more tutorials like this. I would be interested if you can show an example of how to connect to database using struts of any version, using mysql. Please, will you? Thanks in advance.... Shri
-
@arun: I wrote a simple jsp file and tried to run, it is throwing "The requested URL /HelloWeb/ was not found on this server". i followed the same steps which has been mentioned in netbeans tutorial.
can u pls let me know the possible reasone for this error?
Thanks
>>>>>>>
Shailendra
Hi arun,
thanks for this interesting and helpful tutorial.
i have one problem, in helloservlet when you wrote session and press entered of something it generated template code, but when i tried the same it didnt generated the template code. can you please explain the steps how to generate template code using short key or something like u did in this video.
thanks for any help
sincerely
asif
masifshoukat 1 year ago 3
@masifshoukat This is generated as a code template, use the below code:
int count; if (request.getSession().getAttribute("count") == null) { count = 0; } else { count = (Integer) request.getSession().getAttribute("count"); } request.getSession().setAttribute("count", ++count); out.println("Accessed: " + request.getSession().getAttribute("count"));
arungupta 1 year ago
hi Arun,
Thanks for great tutorial.
But I am facing one problem and it is "requested URL not found on server".
I have written one small html file and it is throwing this error. Can you pls let me know the possible reason for same? Same html file is working fine in eclipse.
Thanks in advance.
lohiashailendra 1 year ago
@lohiashailendra And where is this HTML file added ?
What are you trying to achieve ?
arungupta 1 year ago
Great tutorials and thanks for your great work!
Would be great if you create a screencast using CDI, JSF, Facelets together with JPA (that is all technologies combined) to create a web application. I am particularly interested of using CDI and JPA. We really lack this kind of tutorials.
Keep up!
cvasilak 1 year ago
@cvasilak CDI + JPA will be coming in future, stay tuned!
arungupta 1 year ago