b

brap

BRAP is a Java and Android remoting protocol that uses native Java object serialization, encapsulated in HTTP. It aims to be an alternative to Spring HttpInvoker and Spring Security especially when you don't need or want the dependencies of Spring in your client, for example when building a rich client app or an Android app where size is important. The authentication mechanism lets you use your own domain objects as credentials. Server configuration can be expressed solely in web.xml or by subclassing the ProxyServlet but there is also an optional SpringProxyServlet available for seamless Spring Integration. BRAP focuses on being easy to use, small in size (9 kb), yet powerful and extensible. The client uses a pluggable TransportProvider with default implementations for HttpURLConnection and Apache HttpClient.
http://brap.tornado.no/
Apache License
SYSE AS
Edvin Syse
文件下载
文件名 操作
brap-1.0.1.pom 下载
Apache Maven
<dependency>
  <groupId>no.tornado.brap</groupId>
  <artifactId>brap</artifactId>
  <version>1.0.1</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'no.tornado.brap:brap:1.0.1'
Gradle Kotlin
implementation("no.tornado.brap:brap:1.0.1")
Scala SBT
libraryDependencies += "no.tornado.brap" % "brap" % "1.0.1"
Groovy Grape
@Grapes(
  @Grab(group='no.tornado.brap', module='brap', version='1.0.1')
)
Apache Ivy
<dependency org="no.tornado.brap" name="brap" rev="1.0.1" />
Leiningen
[no.tornado.brap/brap "1.0.1"]
Apache Buildr
'no.tornado.brap:brap:jar:1.0.1'