Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/coding-hui/wecoding-sdk-java
IAM Java SDK
https://github.com/coding-hui/wecoding-sdk-java
Last synced: about 2 months ago
JSON representation
IAM Java SDK
- Host: GitHub
- URL: https://github.com/coding-hui/wecoding-sdk-java
- Owner: coding-hui
- Created: 2023-07-22T02:52:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-10T07:33:50.000Z (over 1 year ago)
- Last Synced: 2023-09-10T08:32:42.429Z (over 1 year ago)
- Language: Java
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IAM Java Management SDK
This repository contains the IAM management SDK for Java.
## Getting Started
### Reference Documentation
For further reference, please consider the following sections:
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/3.1.2/maven-plugin/reference/html/)
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/3.1.2/maven-plugin/reference/html/#build-image)
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/docs/3.1.2/reference/html/native-image.html#native-image)
* [Spring Configuration Processor](https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#appendix.configuration-metadata.annotation-processor)
* [Spring Boot DevTools](https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#using.devtools)
* [Spring Web](https://docs.spring.io/spring-boot/docs/3.1.2/reference/htmlsingle/#web)### Guides
The following guides illustrate how to use some features concretely:
* [Building a RESTful Web Service](https://spring.io/guides/gs/rest-service/)
* [Serving Web Content with Spring MVC](https://spring.io/guides/gs/serving-web-content/)
* [Building REST services with Spring](https://spring.io/guides/tutorials/rest/)### Additional Links
These additional references should also help you:
* [Configure AOT settings in Build Plugin](https://docs.spring.io/spring-boot/docs/3.1.2/maven-plugin/reference/htmlsingle/#aot)
## GraalVM Native Support
This project has been configured to let you generate either a lightweight container or a native executable.
It is also possible to run your tests in a native image.### Lightweight Container with Cloud Native Buildpacks
If you're already familiar with Spring Boot container images support, this is the easiest way to get started.
Docker should be installed and configured on your machine prior to creating the image.To create the image, run the following goal:
```
$ ./mvnw spring-boot:build-image -Pnative
```Then, you can run the app like any other container:
```
$ docker run --rm -p 8080:8080 iam-sdk-java:0.8-SNAPSHOT
```### Executable with Native Build Tools
Use this option if you want to explore more options such as running your tests in a native image.
The GraalVM `native-image` compiler should be installed and configured on your machine.NOTE: GraalVM 22.3+ is required.
To create the executable, run the following goal:
```
$ ./mvnw native:compile -Pnative
```Then, you can run the app as follows:
```
$ target/iam-sdk-java
```You can also run your existing tests suite in a native image.
This is an efficient way to validate the compatibility of your application.To run your existing tests in a native image, run the following goal:
```
$ ./mvnw test -PnativeTest
```