Yes, we do use privatemodule. Perfect use case can be found in mybatis- guice integration. we have to expose multiple services and each service/mapper's/DAO's can use its own Datasource for Binding in a given module. In a private module you can bind its own datasource internally and only expose the service. In that way no conflict of different implementations of Datasource. Suggest you read (http:// mybatis.googlecode.com/files/mybatis-guice-1.0.0-reference.pdf) to get an idea.
peace, Surya On Oct 18, 1:41 am, Hien Luu <[email protected]> wrote: > Hi Surya, > > Are you using PrivateModule feature in Guice? If so, what is the use case > for using PrivateModule? > > Thanks, > > Hien > > > > > > > > On Sat, Oct 15, 2011 at 9:26 AM, surya aditya <[email protected]> wrote: > > Thanks Sam. I am not specifically looking for any new features but we > > are using Guice extensively in our Developement efforts that is > > scheduled to go live mid next year and we want to lock in on version > > of Guice that we use. > > > peace, > > Surya > > > On Oct 3, 10:37 pm, Sam Berlin <[email protected]> wrote: > > > What kind of new features are you looking for? There's no roadmap as of > > > now, just some features added & bugs fixed in SVN since the last release. > > > > sam > > > > On Mon, Oct 3, 2011 at 10:04 PM, surya aditya <[email protected]> > > wrote: > > > > Hi All: > > > > > Could anyone share GUICE RoadMap? what are the new features slated to > > > > be released down the lane? > > > > > Peace, > > > > Surya > > > > > -- > > > > You received this message because you are subscribed to the Google > > Groups > > > > "google-guice" group. > > > > To post to this group, send email to [email protected]. > > > > To unsubscribe from this group, send email to > > > > [email protected]. > > > > For more options, visit this group at > > > >http://groups.google.com/group/google-guice?hl=en. > > > -- > > You received this message because you are subscribed to the Google Groups > > "google-guice" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group at > >http://groups.google.com/group/google-guice?hl=en. -- You received this message because you are subscribed to the Google Groups "google-guice" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-guice?hl=en.
