What is the difference between Session.getDefaultInstance(props, authenticator) and getInstance(props, authenticator)? In general, when will you choose one over the other?

I also read Java doc on getDefaultInstance(props, authenticator), but still couldn't able to make out the difference distinctly/clearly.

Hope experts can help me in understanding this better.

UPDATE: Actual reason that triggered to ask this question is: We've used Session.getDefaultInstance() method in some places within our web-based application. Sometimes, it throws java.lang.SecurityException: Access to default session denied, on quick googling, it suggested to use Session.getInstance() method instead. Hence, when one would choose one over the other?

link|improve this question

59% accept rate
1  
download.oracle.com/javaee/6/api/javax/mail/…) This doc might help you understanding difference – Jigar Joshi Nov 15 '10 at 12:24
@org.life.java: I couldn't find any difference? Can you point me to some specific sentence/para? – Gnanam Nov 15 '10 at 12:59
getInstance(): Get a new Session object. , getDefaultInstance() : Get the default Session object. If a default has not yet been setup, a new Session object is created and installed as the default. – Jigar Joshi Nov 15 '10 at 13:11
@org.life.java: In real-time, when will one choose one over the other? In my case, we've a web-based application and there are some contexts/places where emails will be fired. Which method would be recommended in this case? – Gnanam Nov 16 '10 at 4:58
feedback

1 Answer

up vote 0 down vote accepted

If you read the documentation, you will see that

getDefaultInstance Get the default Session object. If a default has not yet been setup, a new Session object is created and installed as the default.

Therefore, if one does not already exist, it call getInstance()

getInstance Get a new Session object.

So, a new session object is created, regardless of whether one already exists.

link|improve this answer
Actual reason for asking this question is explained here: We've used Session.getDefaultInstance() method in some places within our web-based application. Sometimes, it throws java.lang.SecurityException: Access to default session denied, on quick googling, it suggested to use Session.getInstance() method instead. And that's the reason I've asked here when one would choose one over the other? – Gnanam Nov 16 '10 at 12:25
The only I reason I can see to use defaultinstance, is that it prevents the need to create multiple instances needlessly of the session, but other than that there is no difference. If you are having trouble with permissions, then just use getInstance(), it shouldn't cause you a problem. Your application however, should store this at a global level however, rather than create a new instance each time you need it. – Codemwnci Nov 16 '10 at 12:40
Per doc, getDefaultInstance(): Get the default Session object. If a default has not yet been setup, a new Session object is created and installed as the default., will subsequent calls to getDefaultInstance() just not make use of the session that was created before? – Gnanam Nov 16 '10 at 13:34
1  
@Gnanam, yes, but it uses a shared instance across JVM's (reading between the lines in the documentation that says a session can be shared across the desktop). So, that is possibly why he is getting his error, that it is using a shared instance and accessing it with the wrong credentials. So, to prevent the error, it is safer not to use getDefaultInstance(). – Codemwnci Nov 16 '10 at 13:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.