Tagged Questions

39
votes
13answers
3k views

Making life better by not using Java web frameworks? [closed]

I'm so tired of having to learn yet another Java web framework every other day. JSP, Struts, Wicket, JSF, JBoss Seam, Spring MVC to name just a few - all this countless frameworks out there try to ...
28
votes
10answers
34k views

Tomcat 6: How to change the ROOT application

I'm trying to change the default application of Tomcat 6 webserver to other application than "ROOT" (inside webapps folder). What is the best way to do this?
28
votes
6answers
25k views

Log4j, configuring a Web App to use a relative path

I have a java webapp that has to be deployed on either Win or Linux machines. I now want to add log4j for logging and I'd like to use a relative path for the log file as I don't want to change the ...
24
votes
9answers
5k views

Java Web Application Configuration Patterns

Are there any patterns or best practices that can be used to simplify changing configuration profiles for java web applications across multiple environments. e.g. JDBC URLs, SOAP end-points, etc. ...
24
votes
7answers
12k views

Java Memcached Client

Which is the best Java memcached client, and why?
22
votes
8answers
5k views

What to learn for making Java web applications in Java EE 6?

My goal is to make web applications! I finished reading the Books "Headfirst - Java" and "Headfirst - Servlets and JSP". Because this topic (web applications) is so big and complicated, I would like ...
17
votes
5answers
4k views

Clojure web application - where do I start?

So lately I've been looking into Clojure, and I love the language. I would like to see if I can make a small web application in it, just to challenge myself. However, I have absolutely no experience ...
17
votes
14answers
2k views

How to improve productivity when developing JEE based web applications

I'd like to know how you address the seemingly low productivity of JEE-based web application development compared to other technology stacks (Seaside, Ruby on Rails, etc). The constraints are: The ...
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. ...
15
votes
8answers
4k views

Modular web apps

I've been looking into OSGi recently and think it looks like a really good idea for modular Java apps. However, I was wondering how OSGi would work in a web application, where you don't just have ...
14
votes
6answers
2k views

In Java, do I need to declare my collection synchronized if it's read-only?

I fill a collection one single time when my J2EE webapp starts. Then, several thread may access it at same time but only to read it. I know using a synchronized collection is mandatory for parallels ...
12
votes
2answers
2k views

What is the main-stream Java alternative to ASP.NET / PHP

I've heard something and seen some examples of web application built using ASP.NET / PHP and I'm wondering what would be the equivalent way of doing similar things in Java world. Looking on the ...
12
votes
5answers
10k views

getResourceAsStream() vs FileInputStream

I was trying to load a file in a webapp, and I was getting a FileNotFound exception when I used FileInputStream. However, using the same path, I was able to load the file when I did ...
12
votes
9answers
2k views

Is Java relevant in the game industry?

I'm a web developer/apps programmer who wants to break in the game industry. I used to code in C/C++/C# for desktop apps (mainly database-oriented enterprise apps) but nowadays I mainly do PHP/Ajax ...
11
votes
10answers
3k views

Play Framework application deployment

it's been a long time working on a play app & now comes the time to deploye it. that my first time so i'm kind of lost. which hosting compagny is the best & offer good pricing ?
11
votes
20answers
2k views

From Computer Scientist to Software Engineer

I graduated in December in Computer Science and have acquired a Software Engineering position. I have been banging my head up against the wall for 2 months trying to learn Hibernate, Spring and ...
11
votes
11answers
5k views

Logging Java web applications?

I am planning to implement logging into a web application that I am currently working on but I am struggling with some of the details. What is the best way to go about logging a Java web application? ...
10
votes
3answers
583 views

Create web application in Lift Scala

I'm looking to create a web application using Lift for a mini project I am working on. However, I really don't know where to begin. The app will consist of: User accounts User profiles ...
10
votes
3answers
821 views

SiteMesh - still active? v2 vs v3?

I'm evaluating SiteMesh for use in our web applications. I've found two websites for SiteMesh version 2.4 (Jan 2009) -> http://www.opensymphony.com/sitemesh/ version 3.0 (Sep 2009) -> ...
10
votes
4answers
1k views

Web-application configuration outside or inside war file?

A web application usually has at least one configuration file, that contains jdbc configuration and other settings. You can put such file(-s) inside a .war file or outside it. What are the cons and ...
10
votes
9answers
4k views

Best server-side framework for heavy AJAX Java application

There are zillions of Java web application frameworks. 95% were designed before the modern era of AJAX/DHTML-based development, and that means these new methods are grafted on rather than designed ...
9
votes
2answers
180 views

Is there something similar to mini-mvc-profiler for Java?

Like the title said: Is there something similar to the mini-mvc-profiler for Java? I'm looking for something that can be used in a Struts or Spring MVC application and that shows a quick performance ...
9
votes
7answers
2k views

Generate Admin area ( CRUD ) on Play Framework

I'm following the Official tutorial for creating a administration area. I did the first step correctly but when i extend my controller class to CRUD i got an error (Crud not found on the project) + ...
9
votes
2answers
2k views

Why do Java webapps use .do extension? Where did it come from?

I have always wondered why so many Java developers use ".do" as the extension for their web controller (MVC) resources. Example: http://mysite.com/register.do It doesn't even seem to be framework ...
9
votes
7answers
2k views

Pros and Cons of the use of DAO pattern

As I mention, I'm interested to know what do you (as experienced developers) thinks about the use of DAO pattern, specifically within a Web Application. If possible what advantages have you found, or ...
9
votes
3answers
6k 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.
9
votes
4answers
2k views

What is a good embeddable Java LDAP server?

I'm working on a Java web application that integrates with a few other external applications that are deployed along with it. Authentication information must be synchronized across everything and the ...
8
votes
2answers
3k views

Exception NoClassDefFoundError for CacheProvider

I'm kind of new in Spring and hibernate so I'm trying to implement some simple web application based on Spring 3 + hibernate 4 while I start tomcat I have this exception: ...
8
votes
2answers
316 views

Reloading resources loaded by getResourceAsStream

Following best practices, I'm using Thread.currentThread().getContextClassLoader().getResourceAsStream to load resources in a web application (like text files or xml files), instead of going through ...
8
votes
4answers
353 views

How does Spring fit into my application architecture?

I'm currently rebuilding an existing PHP application using Java. I therefore have an existing frontend GUI and an existing database schema that I'm working with. Here is the technology stack I'm ...
8
votes
5answers
805 views

Where should a Java web application store its data?

My Java web application (myapp.war) ist deployed by placing it into the webapps direcotry on Tomcat on Ubuntu 10.04. This application needs to save some data in files. But the user, which is running ...
8
votes
5answers
2k views

Any way of working with Eclipse WTP that does not mean redeploying the _WHOLE_ application when a JSP page is changed

I have migrated a Web Application from MyEclipse to Eclipse WTP, and I am now in the middle of the first major upgrade to the code base and web pages after the migration, and it is frankly driving me ...
8
votes
4answers
22k views

Java - Relative path of a file in a java web application

I want to read a file from a java web application. I don't want to give the absolute path of the file. I just want to put the file in some directory of my web application. Or It can be placed along ...
8
votes
5answers
3k views

Automated Deployment solution for multiple Java web-apps

I'm looking for solutions, preferably open source, that can manage deployments of multiple interdependent java web-applications. The solution requires an ability to create and store a release ...
8
votes
9answers
6k views

Frontend for Quartz?

Im looking at developing a web front end to control and monitor quartz jobs. Does anyone have suggestions for starting points, APIs, or other places to look?
8
votes
12answers
66k views

Oracle Forms/Applications in Internet Explorer 8 using JInitator

Has anyone been able to get Oracle Forms running JInitator to loan in Internet Explorer 8 yet? I have tried removing all add-ons, various version of Java, add the domain to the trusted sites using ...
8
votes
5answers
2k views

How do you manage embedded configuration files and libraries in java webapps?

I'm currently working on a j2ee project that's been in beta for a while now. Right now we're just hammering out some of the issues with the deployment process. Specifically, there are a number of ...
8
votes
5answers
3k views

obtain current svn revision in webapp

what is the best way of displaying/using the revision number in a java webapp? we just use ant to build our .war archive, no buildserver or such. i'd hope there was some kind if $ref that i could ...
7
votes
1answer
214 views

Play's continuations holding http threads

We have implemented a feature in our web app that updates the GUI in response to new events in the server by using Play's continuations, just like a chat app. After running it for some time in ...
7
votes
4answers
2k views

Binding jboss as7 to all interfaces

I'm running JBoss AS7 in a standalone mode using ./standalone.sh. This binds JBOSS to only localhost. Is there a way to bind it to all the hosts, i mean 0.0.0.0 The older versions had -b option to ...
7
votes
2answers
3k views

Choosing a java web framework 2011 [closed]

My question is based on the following question: Choosing a Java Web Framework now? ..only one year later. The reason for my question is that plenty has happened in one year, play framework has ...
7
votes
9answers
11k views

Who sets response content-type in Spring MVC (@ResponseBody)

I'm having in my Annotation driven Spring MVC Java web application runned on jetty web server (currently in maven jetty plugin). I'm trying to do some AJAX support with one controller method ...
7
votes
4answers
244 views

Open source web app more prone to hacking?

At a recent interview, I was asked: Open source web app (say built on Struts/Spring) is more prone to hacking since anyone can access the source code and change it. How do you prevent it? My ...
7
votes
3answers
3k views

Maven: Customize web.xml of web-app project

I have a web application Maven project, and I want to customize the web.xml file depending on the Profile that is running. I am using the Maven-War-plugin, which allows me to define a "resources" ...
7
votes
7answers
196 views

Can I avoid Java EE to create a light-weight web page?

Everything I download seems hellbent on using all of Java EE. I need to build a single page to handle requests to it and do a tiny bit of processing based on parameters. This is to hook into another ...
7
votes
3answers
2k views

question on GWT, Cookies and webpage directing

i am using gwt to create a website. this question is regarding a login page and cookies to save login details. GWT allows you to create a website within a single webpage. my application runs on one ...
7
votes
5answers
4k views

install play-framework in Ubuntu 9.10

I have copied zipped file from the playframework.org website and unzipped it at a location. I have inserted it in my .bashrc profile to set up as PATH environment. But still, the play command is not ...
7
votes
7answers
3k views

How to populate Java (web) application with initial data using Spring/JPA/Hibernate

I want to setup my database with initial data programmatically. I want to populate my database for development runs, not for testing runs (it's easy). The product is built on top of Spring and ...
7
votes
3answers
2k views

Jetty startup delay

I'm trying to figure out what would be causing a 1 minute delay in the startup of Jetty. Is it a configuration problem, my application, or something else? I have Jetty 7 (jetty-7.0.1.v20091125 25 ...
7
votes
4answers
4k views

shutdown hook for java web application

I need to save some data preferrably when the java web application is stopped, or when tomcat is stopped. how can this be done? Edit: any drawback if I use the jvm shutdown hook?

1 2 3 4 5 24