DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > Using Google Guice with Atmosphere

Using Google Guice with Atmosphere

Jean-Francois Arcand user avatar by
Jean-Francois Arcand
·
Jan. 19, 10 · Java Zone · Interview
Like (0)
Save
Tweet
6.73K Views

Join the DZone community and get the full member experience.

Join For Free

Starting with Atmosphere 0.5, you can now use Google Guice to configure Atmosphere.

Google Guice
support is enabled by referencing the Guice filter GuiceFilter and an application specific ServletContextListener that extends from GuiceServletContextListener in the web.xml. For example, the web.xml may be as follows:

   <web-app>
     <listener>
       <listener-class>org.atmosphere.samples.<b style="color: black; background-color: rgb(160, 255, 255);">guice</b>.GuiceChatModule</listener-class>
     </listener>
     <filter>

       <filter-name><b style="color: black; background-color: rgb(160, 255, 255);">Guice</b> Filter</filter-name>
       <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
     </filter>
     <filter-mapping>
       <filter-name><b style="color: black; background-color: rgb(160, 255, 255);">Guice</b> Filter</filter-name>

       <url-pattern>/*</url-pattern>
     </filter-mapping>
   </web-app>

and the application specific servlet context listener may be as follows:

public class GuiceChatConfig extends GuiceServletContextListener {

    @Override
    protected Injector getInjector() {
        return <b style="color: black; background-color: rgb(160, 255, 255);">Guice</b>.createInjector(new GuiceChatModule());
    }
} 

with:

public class GuiceChatModule  extends ServletModule{

    @Override
    protected void configureServlets(){
        Map params = new HashMap();
        params.put(PackagesResourceConfig.PROPERTY_PACKAGES, "org.atmosphere.samples.<b style="color: black; background-color: rgb(160, 255, 255);">guice</b>");
        serve("/chat*").with(AtmosphereGuiceServlet.class, params);
    }
} 


That's it. You can download the previously Atmosphere-Jersey sample, this time Guice enabled from here. For any questions or to download Atmosphere, go to our main site and use our Nabble forum (no subscription needed) or follow us on Twitter and tweet your questions there!

Google Guice Atmosphere (architecture and spatial design) Google (verb)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Debugging Java Collections Framework Issues in Production
  • Comprehensive Guide to Jenkins Declarative Pipeline [With Examples]
  • A Developer Evangelist's Thoughts on Angular 2
  • The Engineer’s Guide to Creating a Technical Debt Proposal

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo