Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Springdoc Openapi | 2,780 | 5 | 133 | 10 days ago | 144 | April 01, 2023 | 28 | apache-2.0 | Java | |
Library for OpenAPI 3 with spring-boot | ||||||||||
Spring Boot Vuejs | 1,982 | 16 days ago | 18 | mit | Java | |||||
Example project showing how to build a Spring Boot App providing a GUI with Vue.js | ||||||||||
Solon | 1,670 | 1 | 78 | 19 hours ago | 640 | August 28, 2023 | 16 | apache-2.0 | Java | |
🔥 Java 新的生态:更快、更小、更简单!!!启动快 5 ~ 10 倍;qps 高 2~ 3 倍;运行时内存节省 1/3 ~ 1/2;打包可以缩到 1/2 ~ 1/10 | ||||||||||
Aws Serverless Java Container | 1,383 | 89 | 16 | 3 days ago | 36 | July 20, 2023 | 58 | apache-2.0 | Java | |
A Java wrapper to run Spring, Jersey, Spark, and other apps inside AWS Lambda. | ||||||||||
Elide | 957 | 17 | 12 | 3 days ago | 197 | June 11, 2022 | 89 | other | Java | |
Elide is a Java library that lets you stand up a GraphQL/JSON-API web service with minimal effort. | ||||||||||
Sureness | 761 | 6 months ago | 32 | February 18, 2022 | 22 | apache-2.0 | Java | |||
A simple and efficient security framework that focus on protection of API. | ||||||||||
Spring Lemon | 654 | 5 months ago | 3 | July 01, 2022 | 11 | other | Java | |||
Helper library for Spring Boot web applications | ||||||||||
Perfect Ssm | 579 | 5 years ago | 4 | apache-2.0 | Java | |||||
:grapes:更完善的Spring+SpringMVC+Mybatis+easyUI后台管理系统(RESTful API+redis) | ||||||||||
Cerberus | 477 | 6 years ago | 5 | mit | Java | |||||
A demonstration of a completely stateless and RESTful token-based authorization system using JSON Web Tokens (JWT) and Spring Security. | ||||||||||
Javadevjournal | 420 | 8 days ago | 7 | Java | ||||||
Source code for the tutorials published on the Javadevjournal site. |
A simple and efficient jvm security framework that focus on the protection of REST API.
Home Page: usthe.com/sureness or su.usthe.com
Sureness is a simple and efficient open-source security framework that focus on the protection of REST API.
Provide authentication and authorization, based on RBAC.
No specific framework dependency (supports Javalin, Spring Boot, Quarkus, Ktor, Micronaut and more).
Supports dynamic modification of permissions.
Supports WebSockets and mainstream HTTP containers (Servlet and JAX-RS).
Supports JWT, Basic Auth, Digest Auth, and can be extended to support custom authentication methods.
High performance due to dictionary matching tree.
Good extension interface, demos and documentation.
Sureness has a sensible default configuration, is easy to customize, and is not couple to any one framework, which enables developers to quickly and safely protect their projects in multiple scenarios.
~ | sureness | shiro | spring security |
---|---|---|---|
Multi Framework Support | support | support need modify | not support |
REST API | support | support need modify | support |
Websocket | support | not support | not support |
Path Match | dictionary matching tree | ant match | ant match |
Annotation Support | support | support | support |
Servlet | support | support | support |
JAX-RS | support | not support | not support |
Dynamic Modification of Permissions | support | support need modify | support need modify |
Performance | fast | slower | slower |
Learning Curve | simple | simple | steep |
Benchmark test shows sureness to lose 0.026ms performance compared to frameless application, shiro lose 0.088ms, spring security lose 0.116ms.
In contrast, sureness basically does not consume performance, and the performance (TPS loss) is 3 times that of shiro and 4 times that of spring security.
The performance gap will be further widened as the api matching chain increases.
Detail see Benchmark Test
requestUri===httpMethod
.post,get,put,delete...
) is considered as a resource as a whole.eg: /api/v2/book===get
Resource path matching see: URI Match
When use maven or gradle build project, add coordinate
<dependency>
<groupId>com.usthe.sureness</groupId>
<artifactId>sureness-core</artifactId>
<version>1.0.3</version>
</dependency>
compile group: 'com.usthe.sureness', name: 'sureness-core', version: '1.0.3'
The default configuration -DefaultSurenessConfig
uses the document datasource sureness.yml
as the auth datasource.
It supports JWT auth, Basic auth, Digest authentication.
@Bean
public DefaultSurenessConfig surenessConfig() {
return new DefaultSurenessConfig();
}
Sureness authentication requires us to provide our own account data, role permission data, etc. These data may come from text, relational databases, non-relational databases, annotations, etc.
We provide interfaces SurenessAccountProvider
, PathTreeProvider
for user implement to load data from the dataSource where they want.
SurenessAccountProvider
- Account datasource provider interface.PathTreeProvider
- Resource uri-role datasource provider interface.Default Document DataSource Config - sureness.yml
, see: Default Document DataSource
Annotation DataSource Config Detail - AnnotationLoader
, see: Annotation DataSource
If the configuration resource data comes from text, please refer to Sureness integration springboot sample(configuration file scheme)
If the configuration resource data comes from dataBase, please refer to Sureness integration springboot sample(database scheme)
The essence of sureness is to intercept all rest requests for authenticating and Authorizing.
The interceptor can be a filter or a spring interceptor, it intercepts all request to check them.
SubjectSum subject = SurenessSecurityManager.getInstance().checkIn(servletRequest)
Sureness uses exception handling process:
checkIn
will return a SubjectSum
object containing user information.checkIn
will throw different types of auth exceptions.Users need to continue the subsequent process based on these exceptions.(eg: return the request response)
Here we need to customize the exceptions thrown by checkIn
, passed directly when auth success, catch exception when auth failure and do something:
try {
SubjectSum subject = SurenessSecurityManager.getInstance().checkIn(servletRequest);
} catch (ProcessorNotFoundException | UnknownAccountException | UnsupportedSubjectException e4) {
// Create subject error related execption
} catch (DisabledAccountException | ExcessiveAttemptsException e2 ) {
// Account disable related exception
} catch (IncorrectCredentialsException | ExpiredCredentialsException e3) {
// Authentication failure related exception
} catch (UnauthorizedException e5) {
// Authorization failure related exception
} catch (SurenessAuthenticationException | SurenessAuthorizationException e) {
// other sureness exception
}
Detail sureness auth exception see: Default Sureness Auth Exception
Have Fun
Sureness supports custom subject, custom subjectCreator, custom processor and more.
Before advanced custom extension, let's first understand the general process of sureness:
As in the above process, Subject is created by SubjectCreate according to the request body, and different authentication processors process the supported Subjects.
Sureness provides the following common interfaces as extension points:
Subject
: Authenticated authorized user's account interface, provide the account's username,password, request resources, roles, etc.SubjectCreate
: Create subject interface, provider create method.Processor
: Process subject interface, where happen authentication and authorization.PathTreeProvider
: Resource data provider, it can load data from txt or database,etc.SurenessAccountProvider
: Account data provider, it can load data from txt or database,etc.Refer to Extension Point for the extended documentation.
Implment Subject, add custom subject content
Implment SubjectCreate to create custom subject
Implment Processor to support custom subject
See Custom Subject
Implment SubjectCreate to create your custom subject
A subject also can support by different processor, so we can custom processor to support custom subject
Implment Processor, set which subject can support and implment processing details
See Custom Processor
Implment PathTreeProvider, load in DefaultPathRoleMatcher
Implment SurenessAccountProvide, load in processor
Detail please refer to Sureness integration springboot sample(database scheme)
Very welcome to Contribute this project, go further and better with sureness.
Components of Repository:
See CONTRIBUTING
JustAuth
A Java library of third-party authorized login: Github
MaxKey
Leading-Edge Enterprise-Class open source IAM Identity and Access management product: Github
PhalApi
PHP Api Framework: Website