|
|
|
#spring-oauth-server
|
|
|
|
|
|
|
|
|
|
|
|
<strong>Spring与Oauth2的整合示例</strong>
|
|
|
|
|
|
|
|
项目用Maven管理
|
|
|
|
|
|
|
|
|
|
|
|
使用的技术与版本号
|
|
|
|
<ol>
|
|
|
|
<li>Spring (3.1.1.RELEASE)</li>
|
|
|
|
<li>Spring Security (3.1.0.RELEASE)</li>
|
|
|
|
<li>MyBatis (3.2.1)</li>
|
|
|
|
<li>spring-security-oauth2 (1.0.5.RELEASE)</li>
|
|
|
|
</ol>
|
|
|
|
<hr/>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<strong>如何使用?</strong>
|
|
|
|
<ol>
|
|
|
|
<li>
|
|
|
|
项目是Maven管理的, 需要本地安装maven(开发用的maven版本号为3.1.0), 还有MySql(开发用的mysql版本号为5.5)
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="http://git.oschina.net/shengzhao/spring-oauth-server/repository/archive?ref=master">下载</a>(或clone)项目到本地
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
创建MySQL数据库(如数据库名oauth2), 并运行相应的SQL脚本(脚本文件位于others/database目录),
|
|
|
|
<br/>
|
|
|
|
运行脚本的顺序: initial_db.ddl -> oauth.ddl -> initial_data.ddl
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
修改<a href="http://git.oschina.net/shengzhao/spring-oauth-server/blob/master/src/main/resources/spring-oauth-server.properties">spring-oauth-server.properties</a>(位于src/resources目录)中的数据库连接信息(包括username, password等)
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
将本地项目导入到IDE(如Intellij IDEA)中,配置Tomcat(或类似的servelt运行服务器), 并启动Tomcat(默认端口为8080)
|
|
|
|
<br/>
|
|
|
|
另: 也可通过maven package命令将项目编译为war文件(spring-oauth-server.war),
|
|
|
|
将war放在Tomcat中并启动(注意: 这种方式需要将spring-oauth-server.properties加入到classpath中并正确配置数据库连接信息).
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
参考<a href="http://git.oschina.net/shengzhao/spring-oauth-server/blob/master/others/oauth_test.txt">oauth_test.txt</a>(位于others目录)的内容并测试之(也可在浏览器中访问相应的地址,如: http://localhost:8080/spring-oauth-server).
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr/>
|
|
|
|
<strong>帮助与改进</strong>
|
|
|
|
<ol>
|
|
|
|
<li>
|
|
|
|
<p>
|
|
|
|
与该项目相关的博客请访问 <a target="_blank" href="http://blog.csdn.net/monkeyking1987/article/details/16828059">http://blog.csdn.net/monkeyking1987/article/details/16828059</a>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<p>
|
|
|
|
如果在使用过程中遇到特殊的问题(如:如何将oauth_code存入数据库),请访问项目的 <a href="http://git.oschina.net/shengzhao/spring-oauth-server/wikis/pages">Wiki</a>
|
|
|
|
与 <a href="http://git.oschina.net/shengzhao/spring-oauth-server/attach_files">附件</a>.
|
|
|
|
<br/>
|
|
|
|
我会把大家反馈的问题解决办法添加在这里.
|
|
|
|
<br/>
|
|
|
|
若在这两个地方没有找到解决办法的,
|
|
|
|
欢迎发邮件到<a href="mailto:shengzhao@shengzhaoli.com">shengzhao@shengzhaoli.com</a>一起讨论.
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
|
|
|
|
<li>
|
|
|
|
<p>
|
|
|
|
如果在使用项目的过程中发现任何的BUG或者更好的提议, 建议将其提交到项目的 <a href="http://git.oschina.net/shengzhao/spring-oauth-server/issues">Issues</a> 中,
|
|
|
|
我会一直关注并不断改进项目.
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
<hr/>
|
|
|
|
<p>
|
|
|
|
关注更多我的开源项目请访问 <a href="http://andaily.com/my_projects.html">http://andaily.com/my_projects.html</a>
|
|
|
|
</p>
|