-
JSP... architecture...
In very short: I need a JSP to display data that is kept in a DB (actually so far only META tags (HTML HEAD...)) but they change very rarely there... so I made custom JSP tag that returns correct data by matching requesting page's URL to data in a HashMap...
The only thing now is how to properly implement the 'cache' class that pulls/refreshes the data from the DB say every 60 minutes? (it's ran on multiple servers/load balanced, should be well architected for scalability and performance...)
Details:
The 'cache'/pulling class: I need _something_ (like EJB/Servlet) [Question 1: suggestions on what _it_ should be?] to start when the server starts (preferably when it starts VS first request to the resource) [Question 2: how to start it?]
Once started it pulls some data from DB into a HashMap/ArrayList and continuously pulls data once every 60 minutes from the DB - I should have a thread I guess? [Question 3: best way to implement this?]
And a custom tag class should pull the HashTabe from the above component every time a JSP page requests it...
Suggestions on the architecture?
Any tips, tricks, links, suggestions are much appreciated 
Thank you all...
-
how can i add java class file to in my JSP program?
-
jsp with core java
how can i add java program in jsp or servlet.the java program might be in frame or applet?
-
This is all J2EE based on MVC archetecture...
-
adding a java class to a JSP
If you want to add a java class to a JSP, simply write
Code:
<jsp:useBean id="film" class="org.gertcuppens.cluif.Film" scope="session"/>
To get a better idea on the MVC or Model View Controller design pattern, google around or buy the "Apache Tomcat Bible" from Eaves, Jones & Godfrey. This book explains how to download java, MySQL, Eclipse and it explains how to build a web application with the MVC design pattern.
Similar Threads
-
By Kit Mendelson in forum Java
Replies: 2
Last Post: 04-24-2001, 05:09 PM
-
Replies: 6
Last Post: 03-02-2001, 02:42 PM
-
By Rob Biernat in forum authorevents.pekowsky
Replies: 1
Last Post: 08-15-2000, 08:05 PM
-
By Siva Sankar in forum Java
Replies: 0
Last Post: 07-13-2000, 12:50 AM
-
Replies: 2
Last Post: 04-07-2000, 01:20 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks