Skip to content

Commit

Permalink
Update Sphinx
Browse files Browse the repository at this point in the history
  • Loading branch information
T5750 committed Jan 14, 2020
1 parent a5958cf commit 3e658ae
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![License](https://img.shields.io/badge/license-Apache-blue.svg)](https://github.com/T5750/java-repositories/blob/master/LICENSE.txt)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/T5750/java-repositories/pulls)
[![Documentation Status](https://readthedocs.org/projects/java-repositories/badge/?version=latest)](https://java-repositories.readthedocs.io/en/latest/?badge=latest)
[![Documentation Status](https://readthedocs.org/projects/jse/badge/?version=latest)](https://jse.readthedocs.io/en/latest/?badge=latest)

## What's included
A ~ C | D ~ G | H ~ L | M ~ P | Q ~ S | T ~ Z
Expand All @@ -12,7 +12,8 @@ A ~ C | D ~ G | H ~ L | M ~ P | Q ~ S | T ~ Z
| | | [jvm](jvm/README.md) | [patterns](patterns/README.md) | |

## Docs
- https://java-repositories.readthedocs.io
- https://jse.readthedocs.io
- http://jse.rtfd.io

## Runtime Environment
- [Java 6](http://www.oracle.com/technetwork/java/javase/downloads/jdk6downloads-1902814.html)
Expand Down
4 changes: 3 additions & 1 deletion doc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

## Java Repositories RTD
Read the Docs for Java Repositories
- Docs: https://java-repositories.readthedocs.io
- Docs:
- https://jse.readthedocs.io
- http://jse.rtfd.io
- Source: https://github.com/T5750/java-repositories

## Runtime Environment
Expand Down
10 changes: 7 additions & 3 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
Java Repositories
=============================================
This is my technical note, I hope this can help you.
.. note::
This is my technical note, I hope this can help you.

- Docs: https://java-repositories.readthedocs.io
- Source: https://github.com/T5750/java-repositories
.. tip::
- Docs:
- https://jse.readthedocs.io
- http://jse.rtfd.io
- Source: https://github.com/T5750/java-repositories

.. toctree::
:maxdepth: 3
Expand Down
1 change: 1 addition & 0 deletions doc/source/jdk8/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ Java™ Platform Standard Ed. 8
:maxdepth: 2
:numbered: 0

jdkJre
Lambda
21 changes: 21 additions & 0 deletions doc/source/jdk8/jdkJre.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# JDK, JRE, JVM, JSE, JEE, JME

**JDK** (Java Development Kit) is nothing but the place or environment used for developing java applications. There are three profiles, so to say or three types of JDKs:
1. **JSE**–> Java Standard Edition–> You can develop standalone applications/desktop applications or even write scripts using Selenium tool for Automation Testing.
2. **JEE**–> Java Enterprise Edition–> It’s used to develop rich enterprise web applications.
3. **JME**–> Java Micro Edition–> Can be used to develop applications running on mobile devices, embedded systems etc.

**JDK**, more specifically, JSE; contains JRE plus the java compiler and other development tools.

**JRE** (Java Runtime Environment) – It’s a package which contains JVM plus supporting files.

**JVM** (Java Virtual Machine) – It acts as an interpreter. It understands byte codes and converts it into CPU understandable instructions.

![jdk-jre](https://s1.wailian.download/2020/01/14/jdk-jre.png)

Java can be written in editors. Most famous are Notepad, Notepad++, EditPlus3.

But, basic or major developments will happen in IDEs i.e Integrated Development Environment for example Eclipse, NetBeans.

## References
- [JDK, JRE, JVM, JSE, JEE, JME](https://blogoncorejava.wordpress.com/2016/02/06/jdk-jre-jvm-jse-jee-jme/)

0 comments on commit 3e658ae

Please sign in to comment.