Authentication & Session debugging
AuthenticationWebFilter
DefaultWebSessionManager
WebSessionServerSecurityContextRepository
OAuth2AuthorizationCodeGrantWebFilter
OAuth2AuthorizationRequestRedirectWebFilter
SpringSessionWebSessionStore
AuthenticationWebFilter
DefaultWebSessionManager
WebSessionServerSecurityContextRepository
OAuth2AuthorizationCodeGrantWebFilter
OAuth2AuthorizationRequestRedirectWebFilter
SpringSessionWebSessionStore
Smart Actions such as:
GET /resource?fields=field1, field3, parent1.child2
GET resource/123?viewName=Euro
import spark.implicits._ class MyObj(val i: Int) // ... val d = spark.createDataset(Seq(new MyObj(1),new MyObj(2),new MyObj(3)))Will give you error, so instead use kyro encoder
import spark.implicits._ class MyObj(val i: Int) implicit val myObjEncoder = org.apache.spark.sql.Encoders.kryo[MyObj]// ...
val d = spark.createDataset(Seq(new MyObj(1),new MyObj(2),new MyObj(3)))