winter-root

The Winter framework is an Inversion of Control and Dependency Injection framework for the Java 9+ platform.

License

License

GroupId

GroupId

io.winterframework
ArtifactId

ArtifactId

winter-core-root
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

pom
Description

Description

winter-root
The Winter framework is an Inversion of Control and Dependency Injection framework for the Java 9+ platform.
Project URL

Project URL

https://github.com/winterframework-io/winter
Project Organization

Project Organization

Winter Framework IO
Source Code Management

Source Code Management

https://github.com/winterframework-io/winter.git

Download winter-core-root

How to add to project

<!-- https://jarcasting.com/artifacts/io.winterframework/winter-core-root/ -->
<dependency>
    <groupId>io.winterframework</groupId>
    <artifactId>winter-core-root</artifactId>
    <version>1.1.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/io.winterframework/winter-core-root/
implementation 'io.winterframework:winter-core-root:1.1.0'
// https://jarcasting.com/artifacts/io.winterframework/winter-core-root/
implementation ("io.winterframework:winter-core-root:1.1.0")
'io.winterframework:winter-core-root:pom:1.1.0'
<dependency org="io.winterframework" name="winter-core-root" rev="1.1.0">
  <artifact name="winter-core-root" type="pom" />
</dependency>
@Grapes(
@Grab(group='io.winterframework', module='winter-core-root', version='1.1.0')
)
libraryDependencies += "io.winterframework" % "winter-core-root" % "1.1.0"
[io.winterframework/winter-core-root "1.1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

  • winter-core
  • winter-core-annotation
  • winter-core-compiler
  • winter-core-test
  • winter-test

Winter Core

The Winter framework core project provides an Inversion of Control and Dependency Injection framework for the Java™ platform. It has the particularity of not using reflection for object instantiation and dependency injection, everything being verified and done statically during compilation.

This approach has many advantages over other IoC/DI solutions starting with the static checking of the bean dependency graph at compile time which guarantees that a program is correct and will run properly. Debugging is also made easier since you can actually access the source code where beans are instantiated and wired together. Finally, the startup time of a program is greatly reduced since everything is known in advance, such program can even be further optimized with ahead of time compilation solutions like GraalVM...

The framework has been designed to build highly modular applications using standard Java modules. A Winter module supports encapsulation, it only exposes the beans that need to be exposed and it clearly specifies the dependencies it requires to operate properly. This greatly improves program stability over time and simplifies the use of a module. Since a Winter module has a very small runtime footprint it can also be easily integrated in any application.

Creating a Winter module

A Winter Module is a regular Java module, that requires io.winterframework.core and io.winterframework.core.annotation modules, and which is annotated with @Module annotation. The following hello module is a simple Winter module:

@io.winterframework.core.annotation.Module
module io.winterframework.example.hello {
    requires io.winterframework.core;
}

A Winter Bean can be a regular Java class annotated with @Bean annotation. A bean represents the basic building block of an application which is typically composed of multiple interconnected beans instances. The following HelloService bean can be used to create a basic application:

package io.winterframework.example.hello;

import io.winterframework.core.annotation.Bean;

@Bean
public class HelloService {

    public HelloService() {}

    public void sayHello(String name) {
        System.out.println("Hello " + name + "!!!");
    }
}

At compile time, the Winter framework will generate a module class named after the module, io.winterframework.example.hello.Hello in our example. This class contains all the logic required to instantiate and wire the application beans at runtime. It can be used in a Java program to access and use the HelloService. This program can be in the same Java module or in any other Java module which requires module io.winterframework.example.hello:

package io.winterframework.example.hello;

import io.winterframework.core.v1.Application;

public class Main {
    
    public static void main(String[] args) {
        Hello hello = Application.with(new Hello.Builder()).run();

        hello.helloService().sayHello(args[0]);
    }
}

Building and running with Maven

The development of a Winter module is pretty easy using Apache Maven, you simply need to create a standard Java project that inherits from io.winterframework.dist:winter-parent project and declare a dependency to io.winterframework:winter-core:

<!-- pom.xml -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>io.winterframework.dist</groupId>
        <artifactId>winter-parent</artifactId>
        <version>1.0.0</version>
    </parent>
    <groupId>io.winterframework.example</groupId>
    <artifactId>hello</artifactId>
    <version>1.0.0-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>io.winterframework</groupId>
            <artifactId>winter-core</artifactId>
        </dependency>
    </dependencies>
</project>

Java source files for io.winterframework.example.hello module must be placed in src/main/java directory, the module can then be built using Maven:

$ mvn install

You can then run the application:

$ mvn winter:run -Dwinter.run.arguments=John

[INFO] --- winter-maven-plugin:1.0.0:run (default-cli) @ app-hello ---
[INFO] Running project: [email protected]...
Hello John!!!

Building and running with pure Java

You can also choose to build your Winter module using pure Java commands. Assuming Winter framework modules are located under lib/ directory and Java source files for io.winterframework.example.hello module are placed in src/io.winterframework.example.hello directory, you can build the module with the javac command:

$ javac --processor-module-path lib/ --module-path lib/ --module-source-path src/ -d jmods/ --module io.winterframework.example.hello 

The application can then be run as follows:

$ java --module-path lib/:jmods/ --module io.winterframework.example.hello/io.winterframework.example.hello.Main John
Hello John!!!

Summary

In this simple example, we created a Winter module which exposes one bean and use it to implement logic in an application. As you can imagine a real life application is far more complex than that, composed of many modules providing multiple beans in different ways and wired altogether. The Winter framework has been designed to create such applications in a simple, elegant and efficient way, please consult the reference documentation to get the full picture.

Building Winter framework

The Winter framework can be built using Maven and a JDK>=9 with the following command:

$ mvn install

License

The Winter Framework is released under version 2.0 of the Apache License.

io.winterframework

Winter Framework IO

Versions

Version
1.1.0