JSP application scope objects in Java library
        Posted  
        
            by FrontierPsycho
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by FrontierPsycho
        
        
        
        Published on 2010-06-02T12:20:34Z
        Indexed on 
            2010/06/02
            12:23 UTC
        
        
        Read the original article
        Hit count: 314
        
I am working on a preexisting web application built with JSP, which uses an external Java library. I want to make some JavaBeans that were instantiated with jsp:useBean tags available to the Java code.
What would be a good practice to do that? I suppose I can pass the objects in question to every function call that requires them, but I'd like to avoid that.
© Stack Overflow or respective owner