Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/colesico/colesico-framework
Micro framework for creating server side applications in Java 17+
https://github.com/colesico/colesico-framework
dependency-injection full-stack java lightweight micro-framework microservices plugin-system rest-api
Last synced: 3 months ago
JSON representation
Micro framework for creating server side applications in Java 17+
- Host: GitHub
- URL: https://github.com/colesico/colesico-framework
- Owner: colesico
- License: apache-2.0
- Created: 2018-07-26T06:26:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-27T13:52:00.000Z (about 1 year ago)
- Last Synced: 2023-11-28T13:29:15.929Z (about 1 year ago)
- Topics: dependency-injection, full-stack, java, lightweight, micro-framework, microservices, plugin-system, rest-api
- Language: Java
- Homepage:
- Size: 5 MB
- Stars: 15
- Watchers: 0
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Colesico-framework
[![colesico](https://github.com/colesico/colesico-framework/workflows/colesico/badge.svg)](https://github.com/colesico/colesico-framework/actions)
`Colesico-framework` is a lightweight full stack microframework for creating backend and server side web applications with Java 17+.
It is inspired by Spring and EJB frameworks but uses more simplified approach to construct an applications. The purpose of this framework is to provide a faster and lightweight alternative.Colesico framework is also an analog of such frameworks as Quarkus and Micronaut but it is [lighter and faster](https://github.com/colesico/java-frameworks-comparison). It also does not almost use the reflection at runtime. The approach used is the generation of extra auxiliary code at compile time using the annotation processors.
Colesico framework is based on an extendable architecture that makes it easy to integrate third party frameworks.
## Documentation
[Colesico-framework docs/manual](https://github.com/colesico/colesico-framework/blob/master/docs/src/asciidoc/framework.adoc)
## Examples
[Colesico-framework examples](https://github.com/colesico/colesico-framework/tree/master/examples)
## Builds
To build colesico framework with maven:
```bash
$ mvn clean install
```## Maven dependency
```xml
net.colesico.framework
colesico-[module or bundle]
${colesico-version}```
[${colesico-version}](https://search.maven.org/artifact/net.colesico.framework/colesico-framework)
## License
This project is licensed under the
[Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.html).## Versioning policy
This project uses modified semver approach.
Version number:
[major].[moderate].[minor]
* [major] - Massive changes affecting many framework modules or a complete change of architecture.
Requires significant client code changes.
* [moderate] - Minimal loss of backward compatibility that affects a few framework modules.
Changes may require a few lines updating in the client code to make it works.
This also may not break an application completely, but it may cause partial degradation.
Please, pay attention to check your code is working properly on such updates.
* [minor] - Backward compatible changes that do not require a client code updates to make it work.
This may be a bugfixes, new compatible framework features, documentation updates, etc.Update 1.2.3 to 1.2.4 - should not require any client code changes.
Update 1.2.3 to 1.3.0 - may require some code changes.
Update 1.2.3 to 2.0.0 - require significant client code changes.