You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/developers/run-in-idea.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,17 @@ To simplify the Java development process and improve efficiency, selecting and c
4
4
5
5
java-tron nodes support deployment on `Linux` or `MacOS` operating systems. The JDK version requirements are as follows:
6
6
7
-
- On x86_64 architecture, currently only Oracle JDK 8 is supported.
7
+
- On x86_64 architecture, currently only JDK 8 (latest minor version recommended) is supported.
8
8
- On arm64 architecture, currently only JDK 17 is supported.
9
9
10
-
The following configuration uses x86_64 architecture and Oracle JDK 8 as an example.
10
+
The following configuration uses x86_64 architecture and JDK 8 (latest minor version recommended) as an example.
11
11
12
12
## Prerequisites
13
13
14
14
Before you begin, please ensure your development environment meets the following requirements:
15
15
16
16
- Operating System: `Linux` or `MacOS`
17
-
-Oracle JDK 8 is installed
17
+
- JDK 8 (latest minor version recommended) is installed
18
18
-`git` is installed
19
19
-[IntelliJ IDEA](https://www.jetbrains.com/idea/download/) is installed
20
20
@@ -41,7 +41,7 @@ To ensure Lombok's annotations work correctly, you must enable the annotation pr
41
41
42
42
### Step 3: Verify and Unify the JDK Version
43
43
44
-
To ensure the project compiles and runs correctly, you must set the JDK version to Oracle JDK 8 in two key locations within IntelliJ IDEA.
44
+
To ensure the project compiles and runs correctly, you must set the JDK version to JDK 8 (latest minor version recommended) in two key locations within IntelliJ IDEA.
45
45
46
46
47
47
#### 1. Configure Project SDK
@@ -60,7 +60,7 @@ This is the JDK used to execute Gradle build tasks (e.g., build, clean).
> **Important Note**: The **Project SDK** and **Gradle JVM** settings must match and both be set to Oracle JDK 8(Consistent with version 1.8 shown in the figure, the difference between 1.8 and 8 is only in the naming convention. In the java-tron documentation, it is uniformly designated as 8 unless otherwise specified). Otherwise, you may encounter unexpected errors during the build process.
63
+
> **Important Note**: The **Project SDK** and **Gradle JVM** settings must match and both be set to JDK 8 (latest minor version recommended; consistent with version 1.8 shown in the figure, the difference between 1.8 and 8 is only in the naming convention. In the java-tron documentation, it is uniformly designated as 8 unless otherwise specified). Otherwise, you may encounter unexpected errors during the build process.
Copy file name to clipboardExpand all lines: docs/using_javatron/installing_javatron.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ This document guides developers on how to deploy a TRON java-tron node on `Linux
4
4
5
5
Currently, a java-tron node supports running on both x86_64 and arm64 architectures(support for the arm64 architecture starts from version 4.8.1). JDK support varies by architecture:
6
6
7
-
- For the x86_64 architecture, currently only Oracle JDK 8 is supported.
7
+
- For the x86_64 architecture, currently only JDK 8 (latest minor version recommended) is supported.
8
8
- For the arm64 architecture, currently only JDK 17 is supported.
9
9
10
10
@@ -58,7 +58,7 @@ uname -m
58
58
59
59
- If your architecture is `x86_64` (Intel/AMD 64-bit):
60
60
61
-
- Install Java SE 8 (Oracle JDK 8): [https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html](https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html)
61
+
- Install Java SE 8 (JDK 8, latest minor version recommended).
62
62
- Verify:
63
63
```bash
64
64
java -version
@@ -67,7 +67,7 @@ uname -m
67
67
68
68
- If your architecture is `arm64` or `aarch64` (Apple Silicon / ARM servers):
69
69
70
-
- Install Java SE 17 (JDK 17): [https://www.oracle.com/java/technologies/downloads/#java17](https://www.oracle.com/java/technologies/downloads/#java17)
Copy file name to clipboardExpand all lines: docs/using_javatron/private_network.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This document will guide you through setting up a basic TRON private network. Th
5
5
6
6
Before you begin, please ensure your development environment meets the following requirements:
7
7
8
-
-**Java Development Kit (JDK)**: On x86_64 architecture, Oracle JDK 8 must be installed; on arm64 architecture, JDK 17 must be installed.
8
+
-**Java Development Kit (JDK)**: On x86_64 architecture, JDK 8 (latest minor version recommended) must be installed; on arm64 architecture, JDK 17 must be installed.
9
9
-**TRON Accounts**: You need to create at least two TRON network addresses in advance and securely store the addresses and their corresponding private keys. One address will serve as the initial SR node (Block Production), and the other will be a regular account.
10
10
-**Address Creation Tools**: You can use any of the following tools to generate and manage your TRON accounts:
11
11
-[Wallet-cli](https://github.com/tronprotocol/wallet-cli): An official command-line wallet tool, suitable for server environments.
0 commit comments