clouway / oauth2-server

OAuth2 Server Library
Other
47 stars 22 forks source link

How to start the server ? #99

Open cgarrotti opened 4 years ago

cgarrotti commented 4 years ago

Hi, How i can start the server ?

mgenov commented 4 years ago

@cgarrotti you can take a look into the example app.

Server definition (using embedded jetty) https://github.com/clouway/oauth2-server/blob/master/oauth2-example-app/src/main/java/com/clouway/oauth2/app/AppServer.java#L26

Here is the servlet definition (the example is using Guice, but it could be added in any servlet environment) https://github.com/clouway/oauth2-server/blob/master/oauth2-example-app/src/main/java/com/clouway/oauth2/exampleapp/OAuthAuthorizationServerModule.java#L31