William Cheng 8455c1cd23
Remove the option to support JDK7 from Java generator and templates (#11547)
* remove java8 from java client generator and templates

* update tests

* remove threetenbp

* update spring templates to remove java8

* remove java8 from jaxrs template

* fix jaxrs spec

* fix feign

* remove CustomInstantDeserializer.java

* fix jersey1

* fix undertow

* various update

* fix jaxrs jersey1

* fix java inflector

* fix jaxrs cxf

* add new files

* update doc
2022-02-10 10:35:29 +08:00
..
2021-08-15 22:36:45 +08:00

petstore-micronaut

This is a generated client based on Micronaut framework.

Configuration

A Micronaut's application can be created by defining a main class and running:

import io.micronaut.runtime.Micronaut;
import io.micronaut.context.ApplicationContext;

public class Application {

    public static void main(String[] args) {
        ApplicationContext context = Micronaut.run(Application.class);
    }
}

More detailed description can be found in the Micronaut Guide.

All the properties can be changed in the [application.yml][src/main/resources/application.yml] file or when creating micronaut application as described in Configuration section of guide.

Api Guides

Description on how to create Apis is given inside individual api guides:

Auth methods

Details on auth methods can be found in the auth.md.

Author