This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes JSP and the fly likes Converting JSP to servlet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Converting JSP to servlet" Watch "Converting JSP to servlet" New topic
Author

Converting JSP to servlet

Megha Singhal
Ranch Hand

Joined: Feb 28, 2012
Posts: 133

following is the code


how can we write following line in servlet
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56529
    
  14

Why would you want to to do that?

Granted, putting JDBC code into a JSP is a bad practice, but so it emitting HTML from a servlet.

if you are going to refactor this code, you should move the JDBC code into the Model layer, and use the servlet to fetch the data from the model as a Java collection, not a result set. This collection will be sent to the JSP page for creating the view.

For more information of properly structuring web apps please read this article.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Megha Singhal
Ranch Hand

Joined: Feb 28, 2012
Posts: 133

Megha Singhal wrote:following is the code


how can we write following line in servlet

i convert it like following, am i wrong somewhere.
bhavesh gawade
Greenhorn

Joined: Aug 08, 2011
Posts: 4
hi,

As long as above servlet code is working well there is no issue. But it might suffer from performance related issue if number of records are more in ResultSet. Use StringBuffer object in loop to create entire output string and then pass the same to out.println() function.
Megha Singhal
Ranch Hand

Joined: Feb 28, 2012
Posts: 133

bhavesh gawade wrote:hi,

As long as above servlet code is working well there is no issue. But it might suffer from performance related issue if number of records are more in ResultSet. Use StringBuffer object in loop to create entire output string and then pass the same to out.println() function.


Thanks for your help, my problem has solved.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Converting JSP to servlet
 
Similar Threads
Showing resultSet
selecting multiple rows to update value
always get the value "20" no matter which checkbox I clicked
form handling in jsp
How to get Names of selected checkboxes?