Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6617917
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T20:45:42+00:00 2026-05-25T20:45:42+00:00

I am using Spring MVC 3, NetBeans I have the following model, public class

  • 0

I am using Spring MVC 3, NetBeans

I have the following model,

public class MarketPlace {

private String status;

public String getStatus() {
    return status;
}

public void setStatus(String status) {
    this.status = status;
}

private String category;

public String getCategory() {
    return category;

}

and this is my controller method,

@RequestMapping(value = "/ListApplication.htm", method = RequestMethod.GET)
public ModelAndView ShowForm(HttpServletRequest request) {
    ModelAndView mav = new ModelAndView("ListApplication"); 
    mav.addObject("apps", marketPlaceService.listApplications());
    return mav;
}

the marketPlaceService.listApplications() method returns List.
and here is my view,

<c:forEach items="${apps}" var="item">
<p>Template Name: ${item.templateName}</p>
<p>Description: ${item.description}</p>
<p>Category: ${item.category}</p>
<p><img " src="${item.templateLogo}" border="0" alt="" /></div></td></p>
<br><br>
</c:forEach>

From debugging I see at least 20 records in the list but the jsp view shows nothing.

Edit:
Interestingly, this code is working,

 protected ModelAndView handleRequestInternal(
        HttpServletRequest request,
        HttpServletResponse response) throws Exception {
    ModelAndView mav = new ModelAndView("ListApplication");
    mav.addObject("apps", marketPlaceService.listApplications());
    return mav;
}

Can anyone tells me the reason.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T20:45:42+00:00Added an answer on May 25, 2026 at 8:45 pm

    This is answer that I found so fast,

        @RequestMapping(value = "/ListApplication.htm", method = RequestMethod.GET)
    public String ShowForm(HttpServletRequest request, ModelMap m) {        
        m.addObject("apps", marketPlaceService.listApplications());
        return "ListApplication";
    }
    

    Any further improvement is welcome. However, addObject is seems to be deprecated, any alternative?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

See the following Mock Test by using Spring/Spring-MVC public class OrderTest { // SimpleFormController
I'm using Spring MVC via a @Configuration class: @Configuration @EnableWebMvc public class WebConfiguration extends
I am using Spring MVC with annotation configuration. I have a controller class for
I am using Spring MVC to build my web application, and I have a
I'm using spring MVC, and I have a custom authentication/security system that I had
I am using spring web mvc for my app's UI part.. By using following
I am using Jboss and Netbeans to create Spring MVC web application on windows.
I am using spring mvc. I have 3 pages in my site (actually the
I am using spring mvc and spring security. In my security-app-context.xml I have: <authentication-manager>
I am using spring MVC 3. I have been trying to access the attributes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.