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 7849585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T18:34:18+00:00 2026-06-02T18:34:18+00:00

What is the scope of static classes used in el language? I assume application

  • 0

What is the scope of static classes used in el language?

I assume application scope?

I tested it in debug mode and that lazy loaded attribute is only initialized once in multiple windows, browsers.

private static Object[] objects = null;

public static Object[] getObjects()
{
    if(ElClass.objects == null)
        //init objects
    return ElClass.objects;
}
  • 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-02T18:34:20+00:00Added an answer on June 2, 2026 at 6:34 pm

    There is no means of a concrete instance. The EL functions class is not even constructed. EL functions are intented to be entirely stateless. Static variables are per definition JVM-wide (or application wide as you call it). In normal Java code you would also just do ELClass.getObjects() instead of new ELClass().getObjects().

    As to your particular example, I recommend to do the initialization just in a static initializer block. That lazy loading is unnecessary.

    private static final Object[] objects;
    
    static {
        // Init objects.
    }
    
    public static Object[] getObjects() {
        return objects;
    }
    

    I also recommend to add a private constructor so that you prevent that the functions class can ever be constructed.

    private ELClass() {
        // Prevent construction.
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a named scope set up in my rails application that is used
I know that static const int x = 42; at namespace scope is equivalent
I am using classes and static methods to 'scope' functions in a namespace, similar
I have several service classes that have static methods and offer a service to
Can anyone tell me what the scope of the static variable in the class
I need to make the standard library function tolower static instead of public' scope.
In C, declaring a variable static in the global scope makes it a global
Global scope allows you to use a variable in a function that was defined
The scope of this is that we have three main projects. Some of the
class ExtHotelApiService extends HotelApiService { static scope = singleton static transactional = true def

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.