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

  • Home
  • SEARCH
  • 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 8354833
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T09:40:37+00:00 2026-06-09T09:40:37+00:00

I would like implement JSP useBean taglib as a class annotation… Is possible? How

  • 0

I would like implement JSP useBean taglib as a class annotation… Is possible? How If so, what is the best (easy and efficient) way to do this?

Example:

  <jsp:useBean id="p" class="beans.Person" scope="application"></jsp:useBean>

—->

  //Custom annotation goes here...
  @ManagedBean
  public class Bean {

  }
  • 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-06-09T09:40:38+00:00Added an answer on June 9, 2026 at 9:40 am

    There’s no direct way using the standard JSP facilities. The oldschool <jsp:useBean> approach is also far from MVC as there’s no means of a controller. Just pick an existing MVC framework which supports JSP as View, such as Spring MVC, JSF, etc (although JSF uses since version 2.0 JSP’s successor Facelets as default View technology) and use its managed bean facilities. Modern MVC frameworks supports annotations.

    In this particular case, with an application scoped bean, a completely different alternative using annotations without the need for a MVC framework is to use a ServletContextListener which is annotated with @WebListener.

    @WebListener
    public void Config implements ServletContextListener {
    
        @Override
        public void contextInitialized(ServletContextEvent event) {
            event.getServletContext().setAttribute("p", new Person());
        }
    
        // ...
    }
    

    (although it’s only pretty strange to have something like a Person in the application scope…)

    For the session scope you could implement HttpSessionListener and for the request scope the ServletRequestListener. It’s only pretty clumsy this way. I’d really consider a decent MVC framework.

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

Sidebar

Related Questions

I would like to implement a very simple way to store a variable containing
I would like to implement a simple AR desktop application. This application should first
I would like to implement a map simmilar to this: http://gmaps-utility-library.googlecode.com/svn/trunk/markerclusterer/1.0/examples/advanced_example.html One of the
I would like to implement a table in JSP page which is something similar
I would like to implement a TreeWritable class to represent a Tree structure. I
I would like to implement a class to provide me with a nice text
I would like to implement a dynamic class name to a navigation pane in
I would like to implement a distinct thread for each route in apache camel.I
I would like to implement a function with R that removes repeated characters in
I would like to implement a simple queueing service specific to a project. Where

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.