Tagged Questions
179
votes
18answers
19k views
How to avoid Java Code in JSP-Files?
I'm new to Java EE and I know that something like the following three lines
<%= x+1 %>
<%= request.getParameter("name") %>
<%! counter++; %>
is an oldschool way of coding and in ...
72
votes
5answers
22k views
What is the difference between JSF, Servlet and JSP?
Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
46
votes
12answers
34k views
Servlet for serving static content
I deploy a webapp on two different containers (Tomcat and Jetty), but their default servlets for serving the static content have a different way of handling the URL structure I want to use (details).
...
22
votes
2answers
2k views
Difference between JSP EL, JSF EL and Unified EL
HI,
I would like to know the detailed difference between the Expression Languages(EL).
There is JSP EL, JSF EL and Unified EL.
I would like to know the history behind the EL and what is the latest ...
1
vote
3answers
2k views
Java Front Controller
I'm thinking of implementing Front Controller in my J2EE application. Could you please suggest the same with few links (with source code examples) & any standards to follow?
Best regards
21
votes
1answer
3k views
Where's the official JSP tutorial
I now have to remember how to create custom tag libraries, and since I'm using servlet 3.0 I decided to see the official JavaEE6 tutorial. Much to my surprise there is nothing about JSP in the JavaEE6 ...
29
votes
8answers
29k views
Access Enum value using EL with JSTL
I have an Enum called Status defined as such:
public enum Status {
VALID("valid"), OLD("old");
private final String val;
Status(String val) {
this.val = val;
}
public ...
14
votes
8answers
5k views
How can I map a “root” Servlet so that other scripts are still runnable?
I'm trying to build a Servlet that calls a JSP page similar to the following:
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException, ServletException {
...
3
votes
2answers
923 views
What is the difference between creating .xhtml or .jsp .or .jsf for JSF pages
i saw some samples creating the JSF pages with extension .jsp
and other samples creating it with .xhtml extension, other samples chooses .jsf
i just want to know what is the difference between above ...
1
vote
5answers
978 views
JSF or MVC with Servlets/JSPs?
I am working on the development of a social web application using Java. I need to develop the frontend GUI of my application for the web browsers.
I am wandering what is the best option in terms of ...
11
votes
8answers
2k views
Can I use a single war file in multiple environments? Should I?
I have a Java web application at my work and I'd like simplify how we deploy to our DEV, QA, and PROD environments.
The application reads in a series of properties at startup, and the properties ...
4
votes
3answers
2k views
requestDispatcher Interface Vs sendRedirect
Can I know the difference between the RequestDispatcher interface and sendRedirect().
Thanks
Ravi
2
votes
1answer
402 views
How can i deploy Session Bean on another computer with Client JSP/Servlet
Hello Everybody i'm new in EJB3, i know how to deploy Session Bean (Stateless or stateful) on Glassfish server in one computer. My question is: how can i deploy session bean on Computer A and Deploy ...
7
votes
2answers
20k views
URL Pattern for servlet mapping in web.xml
I need a workaround with this URL mapping in web.xml to create URLs with a letter, followed by a "_" followed by any combination of alphanumeric characters.
I want to map a servlet to something like ...
5
votes
1answer
489 views
JSP, Sitemesh and Tiles hardcore - any alternatives? [closed]
Tiles and Sitemesh look quite popular but this stuff is really old and look terrible compared to current awesome stuff from e.g. Ruby (ERB) or PHP (Open Power Template). These days template engines ...
2
votes
2answers
147 views
JSP/Servlet design question - Make request/response globally available via JNDI
In PHP one is always able to access the current request or response from any part of their code. This concept is fundamental to PHP programming. Request data, response data, session data (etc) are ...
2
votes
4answers
2k views
Mask urls in JSP
Related to this question:
URL characters replacement in JSP with UrlRewrite
I want to have masked URLs in this JSP Java EE web project.
For example if I had this:
...
1
vote
3answers
130 views
Can I use jsp but not using JavaBean and J2EE?
I am developing a web application using JSP, but it seems that the Java EE is very big for my application. I only doing something like a blog. Can I use a pure jsp and ignore Java EE and the JavaBean ...
3
votes
3answers
9k views
Why does getRealPath() return null when deployed with a .war file?
getRealPath() is returning the actual path in the local system, but returns null when deployed with a .war file.
<%@ page import="java.io.*" %>
<%@ page ...
1
vote
1answer
125 views
Type of object returned by an input from a web page
I'm attempting to upload a file into a jsp and then use the file in some other code. My problem is that it comes into the servlet as an Object via the request.getAttribute() call so I don't know what ...
0
votes
1answer
509 views
How to a create editable data grid in MVC2 architecture in J2EE/JSP
Can anyone provide me some links or examples how to make an editable data grid in JSP. I am using Eclipse, JBoss AS and MS SQL. I have tried my best to search for a data grid example in JSP, but most ...
3
votes
3answers
12k views
How can I make Tomcat pre-compile JSPs on startup?
We're using both Apache Tomcat 6.0 and Jetty 6 where I work. We mostly use Jetty for testing (it's great for running embedded in JUnit tests) and Tomcat for production.
By default, Tomcat compiles ...
15
votes
5answers
8k views
Java EE 6: JSF vs Servlet + JSP. Should I bother learning JSF?
I am trying to get familiar with Java EE 6 by reading http://java.sun.com/javaee/6/docs/tutorial/doc/gexaf.html. I am a bit confused about the use of JSF.
Usually, the way I develop my Web App would ...
5
votes
4answers
21k views
0
votes
3answers
2k views
how to put jsp in WEB-INF
My question is how to put all the jsps in WEB-INF/JSP/
Is there any configuration for that
WEB-INF / JSP --> all jsp is reside in that folder
/ CLASSES -- all classes is reside ...
2
votes
3answers
76 views
Are JSPs generally shipped as .jsp files , pre-compiled Java files or pre-compiled class files?
Is there a 'standard' practice for packaging JSPs when preparing WAR for Production Env?
Are they included as ".jsp" files?
Or are they included as pre-compiled Java files, or pre-compiled class ...
2
votes
1answer
172 views
Access all User Session in Struts 2
I am building a struts 2 application with JPA. A user can login into the application multiple times. I want
user to be able to view all his session in a grid and probably highlight the current ...
1
vote
3answers
78 views
Is it better to ship WAR with class files of JSPs, instead of JSPs themselves?
If we can make Tomcat/Jasper compile JSPs using an ANT task, wouldn't it better to ship the WAR with pre-compiled JSPs as class files, rather than JSPs themselves?
That way, we are not tied down with ...
1
vote
2answers
694 views
Accessing JavaBean Methods using EL from JSP
I'm migrating an old application from JSP 1.1 to JSP 2.1, and trying to do everything without scriptlets. I have a JavaBean that I create, populate and insert into the page scope via a CustomTag. ...
1
vote
1answer
1k views
JSF vs. plain JSP + Beans?
I have the option of doing my next project in either JSF or JSP. Other languages/frameworks are not an option.
I don't want to use any of the visual component libraries like RichFaces, IceFaces, etc, ...
5
votes
6answers
168 views
Is there anything that can be implemented with Servlets and not with JSPs or vice versa
We know that JSPs gets converted to Servlets, Servlets are for the Buisines logic and JSPs for the view etc... But theoretically, you can do most of the things you do with JSP with a servlets. Same ...
2
votes
2answers
147 views
Are jsp standard actions used anymore?
This is a quick question for all of you writing jsps in production. Do you use jsp standard actions and why? What are maybe some of common use cases?
I ask because there are so many taglibs out there ...
1
vote
2answers
111 views
How to dynamically include jsp files in Java EE
I'm doing a little website using Java EE and I'm experiencing a problem. In fact, I would like to have a main layout in which I would like to have the elements of my website which appear on each page. ...
1
vote
1answer
237 views
Getting Session data in Ajax call
hi I am querying database to load all items based on some criteria and setting this result in session as
data = service.getData();
session.setAttribute("data", data);
now I am trying to access ...
1
vote
2answers
242 views
Why can I not get any results from this rather trivial query?
I'm trying to get results from a rather trivial query, and write out those results on a jsp page. Running Glassfish 3.1, using Netbeans. When I run the project, I get an empty list returned from the ...
1
vote
3answers
289 views
user friendly urls in j2ee application
I want to develop a forum application using jsp, servlets.Now i want to have user friendly url to each post eg
...
1
vote
1answer
505 views
Empty EntityManager in Java EE bean on JBoss 5.1
I'm a newbie in Java EE. This is the first project I'm trying to do and I have a problem that I just can't solve.
I've created three projects: slowka-beans (EJB), slowka-persistance (JPA) and ...
0
votes
2answers
64 views
How to reload my classes so that this stacktrace will disappear?
I've got a really strange error. This is the stacktrace that is coming from the application server (websphere 8):
JSPG0049E: /arendeprocess_grunduppgifter_visa.jsp failed to compile : JSPG0225E: An ...
0
votes
1answer
39 views
What is the preferable way to transfer the read & interpreted data from DB to the webpages
I am trying to build a social web application in Java using Database. I need to know what is the preferable way to transfer the read & interpreted data from DB to the webpages. I have created a DB ...
0
votes
1answer
101 views
JSP code translation problem
I am having problem with my JSP conversion (Servlet to JSP).
this is my JSP code:
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 ...
0
votes
2answers
607 views
Display forwarded JSP with url-pattern “/*”
To improve my java skills, I'm trying to build a simple j2ee framework (MVC).
I built it to handle every request in a FrontServlet. Here is the mapping that I used :
web.xml :
<servlet>
...
0
votes
2answers
308 views
What is the difference between servlet and jsp? [closed]
Possible Duplicates:
What is the difference between JSF, Servlet and JSP?
JSP Servlet and Web Programming
When it comes to the open-source Java Platform, Enterprise Edition (Java EE) ...
0
votes
1answer
189 views
How to store the result of a JSP in a string?
I want to store the result of a JSP in a string.
For example, I want to be able to call a function like:
String result = ProcessJsp("/jspfile.jsp");
Also, this must be rather efficient. Making a ...
0
votes
2answers
238 views
j2ee input output stream
i want to creat a pipe between clint browser<->my server <-> some other server .For downloadin some file. I am using apache tomcat as my server.
How can i create the pipe via my server ? i dont ...
14
votes
4answers
7k views
Variables in jsp pages with “included” pages
What are the scoping rules for variables in a jsp page with pages added to them using tags?
My understanding is that an included page is essentially copied verbatum into the page, which would lead ...
6
votes
12answers
890 views
Java web development environment to minimize build-deploy-test cycle time?
What Java web development environment is the best for absolutely minimizing the build-deploy-test cycle time?
Web development environment: JBOSS, Tomcat, Jetty? Deploy WAR exploded? Copy WAR or use ...
5
votes
2answers
3k views
The ultimate Java version table (J2EE, JEE, Servlet, JSP, JSTL)
I'm looking for a component break down of Java EE (or previously know as J2EE) and J2SE
E.g.
J2EE 1.3: Servlet 2.3, JSP 1.2. JSTL 1.0, ...
J2EE 1.4: Servlet 2.4, JSP 2.0, JSTL 1.1, ...
...
3
votes
3answers
3k views
MUlti Language support in JSP/Servlet
How to provide multi language support through JSP/Servlet? How to include static data of different languages at run time on basis of language selected?
2
votes
2answers
3k views
Notify user about session timeout in J2EE
My requirement is to notity the use with a popup saying that the user session is about to time out in x seconds in case user does not perfrom any activity on the web page.
Addition to this ...
1
vote
1answer
1k views
Session shared in between tabs
I have JAVA web application application where I need to stop session being shared between browser tabs , meaning
User opens a browser , Logs into his account and opens a particular page in a new tab ...