https://github.com/rurumimic/spring
popular Java framework
https://github.com/rurumimic/spring
clojure java kotlin scala
Last synced: 15 days ago
JSON representation
popular Java framework
- Host: GitHub
- URL: https://github.com/rurumimic/spring
- Owner: rurumimic
- License: mit
- Created: 2022-06-17T11:39:01.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-19T12:35:22.000Z (over 3 years ago)
- Last Synced: 2025-02-22T12:47:26.629Z (11 months ago)
- Topics: clojure, java, kotlin, scala
- Language: JavaScript
- Homepage:
- Size: 3.29 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spring
- Java
- Kotlin
- Scala
- Clojure
## Documentations
- [quickstart](https://spring.io/quickstart) spring
### Java™ Development Kit.
#### JDK 11
```bash
java -version
openjdk version "11.0.15.1" 2022-04-22 LTS
OpenJDK Runtime Environment (build 11.0.15.1+2-LTS)
OpenJDK 64-Bit Server VM (build 11.0.15.1+2-LTS, mixed mode)
```
#### Install JDK 11
- [jenv](https://github.com/jenv/jenv): Manage your Java environment
- [BellSoft Liberica JDK](https://bell-sw.com/pages/downloads/#/java-11-lts): version 8 or version 11
```bash
# JDK Path
/usr/libexec/java_home --verbose
# Add a version
jenv add /Library/Java/JavaVirtualMachines/liberica-jdk-11.jdk/Contents/Home
## (if 11 already present) Update JDK 11
### rm ~/.jenv/versions/11
### ln -s /Library/Java/JavaVirtualMachines/liberica-jdk-11.jdk/Contents/Home ~/.jenv/versions/11
# Set a project JDK
jenv local 11 # This will create a `.java-version` file
```