12
Spring for Android 윤종윤 13613목요일

Spring for android

Embed Size (px)

DESCRIPTION

Spring For Android 세미나 자료

Citation preview

Page 1: Spring for android

Spring for Android윤종윤

13년 6월 13일 목요일

Page 2: Spring for android

Components

• RestTemplate Module

• Spring For Social(Facebook, Twitter...)

• Spring Security

13년 6월 13일 목요일

Page 3: Spring for android

RestTemplate

• Spring MVC Rest Template Android Version

• Separated from Spring MVC

• Simple way to HTTP Request

• Json Marshalling- jackson, GSon

• XML Marshalling - jaxb, XStream

• Gzip Compression, Using SSL

13년 6월 13일 목요일

Page 4: Spring for android

RestTemplate

• Support HTTP GET/POST/PUT/DELETE

• Using Message Convertersjust like Spring MVC

• Gingerbread Compatibility

• Too many Functions/ Too Large Amount

• No Asynchronous Support

13년 6월 13일 목요일

Page 5: Spring for android

Asynchronous Support

• AsyncTask

• Robospice

• AndroidAnnotations @Background @UIThread

13년 6월 13일 목요일

Page 6: Spring for android

Spring for Social

• Through Web OAuth Authorization

• Using SQLite Repository

• Spring for Twitter, Spring for Facebook

• Easy way to use

• Over 30 services Support

13년 6월 13일 목요일

Page 7: Spring for android

Authentication

13년 6월 13일 목요일

Page 8: Spring for android

Structure

• ConnectionRepository

• Store Connection Information

• ConnectionFactory

• Operate Facebook, Twitter

13년 6월 13일 목요일

Page 9: Spring for android

ConnectionRepository

SQLiteConnectionRepository

TwitterConnectionRepository

FacebookConnectionRepository

ConnectionFacetoryRegistry

LocalSQLite

DB

User승인 정보 저장

Connection Factory

TwitterConnectionFactory

FacebookConnectionFactory

13년 6월 13일 목요일

Page 10: Spring for android

Dependency Injection?

• Not supported

• Alternatives - Dagger, Guice

13년 6월 13일 목요일

Page 11: Spring for android

Annotations?

• Use Androidannotations

• Make code simple

13년 6월 13일 목요일