Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clean code, stateless session beans and private state

According to clean code by Robert C. Martin methods should have a small signature. The best case would be a method with no parameters at all. Instead it is recommended to use state variables. This is really useful. But what about stateless session beans?

The name is kind of confusing because SLSB can have state. You just have to do your housekeeping so you don't use state from the previous EJB call.

Getting back to clean code: I'd love to use instance variables in SLSBs too. This works fine and if you're careful enough you don't have any trouble with state inconsistencies since the state is overwritten on each public method call.

So far so good. But what happens if a used bean goes back to the pool? It takes its state with it. Depending on the size of the state this could be a real memory leak. JBoss is very generous with beans and generates quite a bunch of them causing some serious memory consumption - for nothing.

So one way would be to clean up the state before the bean method exists and the bean is returned to the pool. But this seems to me like useless code that should be avoided.

Is there a proper way to deal with this problem? What's the best practice in this situation?

like image 432
M. Assassa Avatar asked Apr 24 '12 14:04

M. Assassa


People also ask

What is stateful and stateless session bean?

An instance of a stateful session bean has a unique identity that is assigned by the container at create time. Stateless: A stateless session bean does not maintain conversational state. Instances of a stateless session bean have no conversational state.

What is a stateless session bean?

A stateless session bean does not maintain a conversational state with the client. When a client invokes the methods of a stateless bean, the bean's instance variables may contain a state specific to that client but only for the duration of the invocation.

Which session bean maintains state between clients?

Singleton session beans maintain their state between client invocations but are not required to maintain their state across server crashes or shutdowns.

Is stateless beans are thread-safe?

Yes it's thread-safe.


1 Answers

It's perfect possible to keep instance variables in SLSB, since you don't use the proxy do make calls between methods. For instance:

@Stateless 
public class MyEJB {
    private String myVar;

    public void receiveVar(String myVar) {
        this.myVar = myVar;
        useVar();
    }

    private void useVar() {
        // do something with var
    }
}

The point is: when you inject this SLSB in another, any method call will pass through the proxy to achieve the actual EJB. So, considering that the real instance is retrieved from the pool when the method is called on the proxy instance, there's no guarantee that the proxy will use the same pooled instance between two or more calls. So isn't possible ensure the value of any declared class attribute.

When the SLSB backs to the pool, it take with itself every setted value (I think it may change according the vendor, I'm not really sure). But, it's completely possible (and acceptable) that a pooled SLSB instance already has a previously configured attribute value.

I didn't understand your point here:

So far so good. But what happens if a used bean goes back to the pool? It takes its state with it. Depending on the size of the state this could be a real memory leak. JBoss is very generous with beans and generates quite a bunch of them causing some serious memory consumption - for nothing.

Do you have any example of "big state" you could have in a SLSB?

And finally:

I think the best way to handle the values is always handle state variables that you'll use. Setting before and cleaning after use. And the best practice is avoid this kind of confusing situation.

Hope it helps.

like image 150
Jaumzera Avatar answered Sep 28 '22 00:09

Jaumzera