Tagged Questions

15
votes
7answers
4k views

What is a lightweight, fast, java servlet container?

I have been writing a pure java web server specifically customized for a website I'm making. I've grown tired of reinventing the wheel though, and am now investigating moving over to java servlets. ...
9
votes
3answers
5k views

What does WEB-INF stand for in a Java web application?

Most of the places on the internet say it stands for WEB INFormation. I rather doubt it. The folder contains executables. Information is not a suitable name for it.
7
votes
14answers
879 views

Does it make sense to use a framework for a simple java web app?

I've done lots of java web development using jsps and servlets, and I have found this approach to be straightforward and flexible. Some of the groundwork involved though - such as managing database ...
7
votes
5answers
341 views

How to test a webapplication?

If I have java-webapp (servlets), what is the best way to create automated tests for this application? Should I start a server? But that is very fragile. Should I call the servlets directly? But how ...
6
votes
6answers
1k views

Is Jetty ever used for production deployment?

Why would it be preferred over Tomcat? Is your experience with big or little companies? Internal or external (customer/public facing) systems?
5
votes
5answers
3k views

Running Java on a Web Server

I have written a standalone Java application that I've packaged into a jar file that takes in some command line arguments, does some hardcore computations, and then writes out the result to a file ...
5
votes
4answers
3k views

How can I share a variable or object between two or more Servlets?

I would like to know if there is some way to share a variable or an object between two or more Servlets, I mean some "standard" way. I suppose that this is not a good practice but is a easier way to ...
4
votes
4answers
861 views

How to convert UTF8 to unicode

I try to convert a UTF8 string to java unicode string. String question = request.getParameter("searchWord"); byte[] bytes = question.getBytes(); question = new String(bytes, "UTF-8"); The input ...
4
votes
1answer
590 views

How long do you keep session cookies around for?

I'm implementing a web app, which uses sessions. I'm using GWT and app engine as my client/server, but I don't think they're doing anything really different than I would do with PHP and apache etc. ...
4
votes
3answers
4k views

One or multiple servlets per webapp?

I know, it depends on the webapp. But in the normal case, what do you do: one servlet, that serves different pages (like an standalone-application with changing content) or for every page a single ...
3
votes
3answers
38 views

Is there any reusable JSP / Servlet / framework to export jvm, system, and webapp status?

I have seen several Java web application projects adding some JSP or servlet to visualize status information such as: JVM info (version, free memory, PermGen statistics, etc.) System status (OS, ...
3
votes
2answers
184 views

Best way for using JSP and Servlets in an MVC webapp

I'm working on a dynamic website in Java and I'm interested in sticking with the MVC pattern. What is the best way to divide the work of a webapp between JSP and Servlets? Should I see my JSP file as ...
3
votes
7answers
205 views

What would be a better design to resolve host/port lookups

static image (e.g. car.png) <table><tr><td><img src="http://<somehost>:<someport>/images/car.png" /></td></tr></table> (e.g. lookup by id=123456 ...
3
votes
2answers
239 views

Different session timeouts for different users in same web app

I have a requirement within the same web application to set 2 session timeouts. 60 minutes for regular users and 3 hours for admin users. I am told this is not possible and I will need to host a ...
3
votes
1answer
346 views

Explicit directory for JSF template files

I'm just getting into Seam/JSF development and looking for a way to lookup the XHTML template files from a different location. When configuring the JSF application like this: <servlet> ...
3
votes
4answers
4k views

Examples of Java MVC Model 2 architecture?

Can anyone post or point me in the direction of a clear example of a from scratch implementation of Model 2 architecture? Below is a detailed description of Model 2, taken from this page. The ...
3
votes
5answers
225 views

Recommendations for migrating a legacy web app to a modern framework

I am currently doing some work for a company that runs a legacy web app built on Java Servlets (the system pre-dates JSP's, although they now use them when building new pages). The code base is a big ...
3
votes
5answers
2k views

Creating a java servlet web application

We have to create a web application for a school project and I'm wondering what best practices are when creating a web application using java servlets, beans and jsp. Specifically I'm curious about ...
2
votes
1answer
62 views

Servlet: response.setContentLength() slows download down

private void downloadAllRelease(HttpServletRequest request, HttpServletResponse response) { LoginToken tok=getToken(request, response); int size = 0; try { ...
2
votes
2answers
61 views

redirecting requests based on the body tomcat

I have a tomcat 7 application which I can get requests from external sources. Most of them call my request like this: http://localhost:8080/MyWeb/exRequest and I build servlet with URL pattern ...
2
votes
3answers
179 views

Understand application architecture

I am a S/W developer working on a Java web application. I have very limited knowledge of Java and want to understand my application architecture from a very high level in simple terms. Being a ...
2
votes
1answer
686 views

Playframework + Tomcat Deployment issue

I am trying to deploy a web app developed in play framework in Tomcat. The first few times I tried, I got the following message in the Tomcat console, INFO: ...
2
votes
5answers
122 views

Question regarding streams in java

We have the below requirement. We will have to create an excel/pdf report and then download it on click of a button in a java web application. The pdf/excel file is dynamically created using ...
2
votes
2answers
520 views

Store Retrieve Data from Database to Java

What's the best way to store data retrieved from database in to Java for processing? Here's some context: Every month, data from Excel files are stored in the database and our web application ...
2
votes
2answers
228 views

How to deal with potentially long operation in a doGet or a doPost?

After an HTTP POST (generated by an application, not by users) I want to send an email. I got the email sending procedure right but I'm not sure about how Java webapp servers are working. I'm ...
2
votes
4answers
225 views

How to identify the URL of an Java web application from within?

My Java web application contains a startup servlet. Its init() method is invoked, when the web application server (Tomcat) is started. Within this method I need the URL of my web application. Since ...
2
votes
3answers
1k views

How to invoke a Servlet (doGet) in a web application on startup?

I need to invoke a Servlet on application startup since it contains some application initialization logic. I know I can set load-on-startup configuration, but this will only invoke Servlet’s init ...
2
votes
3answers
713 views

Servlet doPost() Method setup?

I am interested in creating a web app that uses JSP, Servlets and XML. At the moment I have the following: JSP - Form input. Servlet - Retrieving Form data and sending that data to a java object. ...
2
votes
2answers
985 views

Any tool to view web session attributes?

I use jsp/Servlets for my web layer. Is there any tool to examine session attributes in a web session?
2
votes
3answers
224 views

Is it possible to use a JSP as a template for a servlet?

I've been intermixing JSPs and Servlets in the web app I'm building and I'm starting to find that my more complex JSPs end up containing a lot of code, which flies in the face of all the MVC lessons ...
2
votes
5answers
1k views

Java servlets and database connection pooling

Just looking at examples of connection pooling on the web, they all implement connection pooling on a per servlet basis. So each servlet has its own pool of database connections. My question is, why ...
2
votes
2answers
328 views

How can state be maintained between Java Servlets?

Situation I have a few single-responsibility Servlets that take a request, do their job, respond, and are done -- no state need be maintained in these cases. However, I have I "Plain Old Java ...
2
votes
3answers
5k views

Configuring Tomcat 5.5 to UTF-8 encode all sendRedirect() redirections?

A requirement of the product that we are building is that its URL endpoints are semantically meaningful to users in their native language. This means that we need UTF-8 encoded URLs to support every ...
2
votes
2answers
756 views

Escaping Special Characters Posted to Servlet

I have a jsp containing a form which posts to a servlet, when the servlet receives the parameters from the form the pound sign (£) is preceded with the following character Â. So £ becomes £. What ...
2
votes
1answer
65 views

What is the best way to allow both a servlet and client-side scripts read the same file?

We want to share user validation configuration between a Java validation class (for sanity checking) and a Javascript-enabled form web interface (for usability). What's the best way to deploy this ...
1
vote
1answer
105 views

Does the servlet specification guarantee single thread initialization and inline attributeChanged events?

I have a web application that bootstraps event-receiver from external system when a ServletContext is initialized. All components that need to receive events are listening for ServletContext attribute ...
1
vote
2answers
41 views

How to get Client time from request object. No JavaScript

I want to use the time of client machine in Web application. Is there any way to get user time from HttpServletRequest? I can't use any javascript or client side scripting, as this web application is ...
1
vote
0answers
62 views

Embedded Jetty WebAppContext FilePermission issue

I need to limit file permissions for "plug-in" WAR files containing servlets in an embedded Jetty. To test the file permissions, I created a WAR containing this servlet that tries to write to a file ...
1
vote
3answers
90 views

Client Machine Unique ID

Is there any scripting method to generate a fixed unique ID of client machine? My situation is: When the browser request the video from web server, I need to store a unique ID when to identify the ...
1
vote
2answers
52 views

MVC design confusion

I am working on a small booking site right now. And that site has one single servlet with a big if-else block with around 85 conditions to redirect the request to the appropriate jsp. The same servlet ...
1
vote
2answers
67 views

Multipage environment in GWT

I have been developing an AJAX web application using GWT. I've read several blogs and forums about this question and left with no clear idea. I understand that GWT is an AJAX application, that ...
1
vote
1answer
31 views

Scenario where i can use only redirect not forward or it would be better to use than forward?

In every webapplication i have used forward. i want to know the scenario where i can use only redirect not forward or where redirect will be advantageous to use if compare to forward?
1
vote
1answer
55 views

Saving a resource (image etc) relative to application root and using it back in a Servlet / Jsp

I have this use case for which I am generating an image in the getPost method of servlet. I was saving the image in the local file system at /tmp/xyz.jpg and then doing something like ...
1
vote
2answers
128 views

Sessions between two diiferent servers

Hello friends i am developeing a e-commerce application in which i am integrating the paypal sandbox. After transactions at Paypal, my session gets destroyed on returning to my own site. How can i ...
1
vote
1answer
604 views

How to get the Application name/fullpath in a servlet deployed in WebLogic

Just like we can get the domain root directory from weblogic.management.DomainDir String root = DomainDir.getRootDir() ; and domain name from weblogic.management.configuration.DomainMBean ...
1
vote
1answer
167 views

Strange memory leak when reading serialized data in Tomcat web app

I'm deploying a relatively simple web application to Tomcat 7.0.8 (JVM 1.6). The app registers a ServletContextListener and has a single resource called "data" located in WEB-INF. The "data" file ...
1
vote
2answers
364 views

How to access an object that was created in one servlet from another servlet

I have a problem. Lets say there are 2 servlets: Load() and Process(). During Load(), I want to create and initialize some objects. and During Process(), I want to use those objects for some other ...
1
vote
2answers
173 views

java: question on filter and servlet mapping

I have a web application with the following structure: TOMCAT_HOME | webapps |_myapp |-html/ |-various directories |-WEB-INF/ |-index.html The ...
1
vote
2answers
191 views

amazon AWS in web app, InstantiationError: com.amazonaws.handlers.b

i'm trying to use amazon AWS in a java web application, running in apache tomcat. when i run my app, it fails with, java.lang.InstantiationError: com.amazonaws.handlers.b ...
1
vote
1answer
263 views

Java: how to write to folder in webapp?

I deployed my webapp in Tomcat, but when I prefix the filename with \ I end up in the root of my server (C) folder, and if I don't prefix it with \ I end up in the bin folder. The former I expected, ...

1 2 3