Framework « Development « JSP-Servlet Q&A





1. Does it make sense to use a framework for a simple java web app?    stackoverflow.com

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 - ...

2. Is it OK to have two frameworks in the same project?    stackoverflow.com

So I have taken over a Java Web project. The application was written by another developer who now works for another company. Generally speaking, the application is straightforward, well designed ...

3. Recommendations for migrating a legacy web app to a modern framework    stackoverflow.com

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 ...

4. Possible to port legacy servlet to framework one component at a time?    stackoverflow.com

I have heard that you can run an ASP.NET application and ASP.NET mvc application side by side so that you can port existing code over one piece at a time. I ...

5. Velocity framework servlet    stackoverflow.com

I have a module written in servlets and needs to be recently moved to velocity framework So in the process I am rewriting the web.xml to create velocity servlet object whcih calls our ...

6. Geocortext IMF framework Null reference exception    stackoverflow.com

Still having issues with this problem. Please help if you can. So I am trying to fix a piece of code using the Geocortex IMF framework. I get an error ...

7. Why use an MVC framework when Servlets, JSPs and a lightweight DAO layer will work?    stackoverflow.com

I'm finding it difficult to embrace a Java MVC framework, when it looks as if Servlets, JSPs and a lightweight DAO will do just about everything you need it to do ...

8. How to implement an Enterprise-grade JavaScript "framework" for web designers?    stackoverflow.com

I have been tasked with improving the current mess that is our JavaScript "strategy"; we're an online shopping company and my boss has given me time to do this properly. He ...

9. Using a custom Servlet oriented framework, too many servlets, is this an issue    stackoverflow.com

In our application, we structure different web applications by Servlet. There are many, many Servlets and Filters in our applications. We already use different frameworks but not for this particular legacy ...





10. Who here is working with java/jsp as web development can you recommend it?    stackoverflow.com

I am now in the process of choosing framework for our web application. I am coming from java/c++ background and built web front ends based on java, but for inner ...

11. a good JSP framework for a beginning JSP developer    stackoverflow.com

I started looking at JSP yesterday and a question I asked my friend was: "is there not something like an online manual for JSP? Something like php.net" He replied : "There isn't such, ...

12. How to begin with Java Server Side technologies?    stackoverflow.com

I have good knowledge of PHP. But I also want to learn technologies like JSP. I have installed Apache Tomcat 6.0 and Eclipse JEE. I was looking for JSP tutorials on ...

13. MVC Framework for existing application    stackoverflow.com

I am modifying existing java web application that was written long time ago, and it is written in the wrost possible way. It has business logic and sql statemens in JSP ...

14. Any framework for customizing different view for different vendor?    stackoverflow.com

We have integration with several vendor for showing our product catalouge. Every-time, we have to customizing the view according to the provided templates by Vendor. I have find following points after ...

15. drop in Java framework/library providing registration wizard, email confirmation, password complexity    stackoverflow.com

I have an existing Java servlet app as a war file developed by another team, which has very limited user registration capabilities and validations. We have a security policy to require ...

16. Servlet 3.0 MVC frameworks    stackoverflow.com

With the adoption of servlet3.0 it's appeared many articles on new features and bla bla, but really, is there any solid MVC framework which is targeted for the new specification ? ...





17. Use Play! with a graph-visualization framework that relies on Servlets    stackoverflow.com

I really like Play and it adresses all the problems I had when develpoing web applications. My next project involves calculations on graphs (in this case biological networks) and visualization of ...

18. Security Framework like seam for Java EE - JSP, Servlet, DAO    stackoverflow.com

What are some good robust security frameworks for a Java EE application? We are currently using a custom EJB solution that is lacking the authorization, permissions, rules aspect of a secure web ...

19. Any JSP Framework for Web UI of an app? Framework and UI n00b here    stackoverflow.com

I have a simple JSP based project consisting of a couple of servlets. I want to design a neat and slick, web 2.0 'ish' UI for the same. My requirements are some ...

20. Best/most clean way to inject dependencies into Servlets without any frameworks    stackoverflow.com

What is the best way to inject dependencies into Servlets when you don't want to use any sort of DI frameworks? Shall I put them into the ServletContext in a ServletContextListener? ...

21. best java(JSP technology) mvc framework for webapp    stackoverflow.com

which is the best MVC framework for the following requirements: 1>minimalistic 2>lightweight 3>should support ajax and javascript libraries like jquery and i am going to use this for a project involving GIS maps so it ...

22. Anyone know of a Java File servlet framework that supports HttpRanges etc    stackoverflow.com

I have been attempting to find a servlet file framework that provides a bit more than just reading a file setting the appropriate headers and thats it. There are countless samples ...

23. Load files based on Language in Stripes Framework    stackoverflow.com

Morning, I'm looking for a way to load different files based on the language of the browser using the stripes framework. e.g. if (getLocal() == Local.US) load(testsheet_us); same question for the jsp files:

<c:if ...

24. Why is the play framework not built on top of the Servlet API?    stackoverflow.com

I started playing with the playframework recently and really enjoy the simplicity. But one nagging question I've had is why it eschews the servlet specification all together? What was the main motivation ...

25. Framework for a Java CRUD Application    stackoverflow.com

I'm currently maintaining a web application using:

  • Java
  • JSP/Servlets (ie. no frameworks)
  • WebSphere
  • DB2
It's basically a CRUD application that lets users view data and manipulate them. It's almost as if it's a replica of the ...

26. Is there a Java web framework that uses Java's security manager for fine-grained security?    stackoverflow.com

In a standard webapp setting, all code runs with the same privileges. It would be desirable to follow the principle of least privilege instead, and Java's security manager ...

27. Framework/architecture for generating simple HTML controls    stackoverflow.com

I'm just wondering/deeply thinking about whether any framework/architecture/library exist that would help in automatically generating simple HTML controls along with its label. For example, I'm just simply envisioning as described below. ...

28. Web framework based on servlet 3.0    stackoverflow.com

I was curious to know if anyone's aware whether any of the main web framework teams are working on incorporating the Servlet 3.0 specs into their stacks? AFAIK, they're all based ...

29. Simple Java web framework    stackoverflow.com

Possible Duplicate:
Can anyone recommend a simple Java web-app framework?
I want to know about web development with Java. It is very easy to work with ...

30. Add my own servlet in the seam framework    seamframework.org

31. Using framework    coderanch.com

I`m currently using struts framework for my project, however, as you know, struts focuses on the controller and view. As for model, I have to handle on my own. I tried expresso framework, however it is so complicated and lacking documentation(In order to get more support licence fee? Reasonable enough..However I`m just a college student). I`d like to ask about your ...

32. Problem with JSP include and Model-2 Framework....    coderanch.com

Hello Pals,I have a JSP called JSPLeft.jsp which has 5 buttons on it and it's included on every page using tag. Now, because each including(Parent)JSP has it's unique form name as in

.The form name is used within a Javascript function ,which is invoked on clicking any button on these JSPs. This function assigns a value(The ...

33. Caesar Framework    coderanch.com

34. Any Frameworks for Personalization ??    coderanch.com

35. FrameWork    coderanch.com

36. Tiles framework    coderanch.com

37. Framework behind Ad Words    coderanch.com

I was just wondering if anyone has seen an article/discussion on efficient ways of coding an "adwords" type of application. (Server side code does not matter) I am looking at trying to do something similiar, but it is not dealing with ads. Right now the logic that I have in my head seems to be rather poor, hopefully something can give ...

38. Testing framework for servlets    coderanch.com

40. Ajax Frameworks and servlets question    coderanch.com

42. Application using JSP/Servlet framework    coderanch.com

Originally posted by Lavanya tr: No Im not asking about the Struts or JSF, Can JSP and Servlets alone can make a framework? Sure. You could build an entire web application without servlets and JSP if you wanted to. It would be an absurd waste of time to implement everything that existing containers and the servlet spec do for us now, ...

44. Servlets , POJOs and Framework design    coderanch.com

Hi all, I've been working on a framework for sometime now (OortCloud) that deals with mapping, wiring and filtering Objects to UI components. I recently read a few posts here at the O'l JavaRanch and it raised a few questions that I cant seem to answer through research. Mainly: Why must I Serialize every Pojo that will be used as a ...

46. Apt Framework    coderanch.com

Hi I am developing an enterprise application where in I need to customise the views for various group of users. I'm looking for a JAVA Framework which will allow easy configuration of views (in XML, DB) as per the user requirements. Can anyone suggest me apt framework which is easy to mould, fast to code and best in performance. Thanks! Gurcharan ...

47. Web Frameworks    coderanch.com

Hi, I have been working with Java for about a year now and have slowly progressed from small command line programmes to jsp pages with scriptlets, to using beans and finally to using JSTL. I have been expecting my next step to be using some sort of web framework but have come up against a few issues. First of all, for ...

48. Why so many open source persistence frameworks?    coderanch.com

Because they all, um, steal each other's good ideas and thus improvement takes place. If you just had one framework which was imposed upon you by a large and powerful corporation (not mentioning any names) then you would have to trust that corporation to come up with the good ideas all by itself.

49. Advantages of Jboss Seam Framework    coderanch.com