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: README.adoc
+7-14Lines changed: 7 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,13 @@ parsing or rendering it, just copying it to `${main.basedir}`
113
113
any changes in the README it will then show up after a Maven build as
114
114
a modified file in the correct place. Just commit it and push the change.
115
115
116
+
You can generate the docs site using the following command:
117
+
118
+
[indent=0]
119
+
----
120
+
./mvnw -pl docs -P docs antora:antora
121
+
----
122
+
116
123
[[working-with-the-code]]
117
124
== Working with the code
118
125
If you don't have an IDE preference we would recommend that you use
@@ -156,20 +163,6 @@ The generated eclipse projects can be imported by selecting `import existing pro
156
163
from the `file` menu.
157
164
158
165
159
-
[[jce]]
160
-
== JCE
161
-
162
-
If you get an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files.
Copy file name to clipboardExpand all lines: docs/modules/ROOT/pages/server/encryption-and-decryption.adoc
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,6 @@
1
1
[[encryption-and-decryption]]
2
2
= Encryption and Decryption
3
3
4
-
IMPORTANT: To use the encryption and decryption features you need the full-strength JCE installed in your JVM (it is not included by default).
5
-
You can download the "`Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files`" from Oracle and follow the installation instructions (essentially, you need to replace the two policy files in the JRE lib/security directory with the ones that you downloaded). This is only applicable for old versions of Java. Starting from Java 9, and definitively from Java 8u161 onwards, unlimited strength cryptography is enabled by default
6
-
7
4
If the remote property sources contain encrypted content (values starting with `\{cipher}`), they are decrypted before sending to clients over HTTP.
8
5
The main advantage of this setup is that the property values need not be in plain text when they are "`at rest`" (for example, in a git repository).
9
6
If a value cannot be decrypted, it is removed from the property source and an additional property is added with the same key but prefixed with `invalid` and a value that means "`not applicable`" (usually `<n/a>`).
If you get an exception due to "Illegal key size" and you are using Sun’s JDK, you need to install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files.
Copy file name to clipboardExpand all lines: spring-cloud-config-server/src/main/java/org/springframework/cloud/config/server/environment/EnvironmentController.java
Copy file name to clipboardExpand all lines: spring-cloud-config-server/src/main/java/org/springframework/cloud/config/server/support/EnvironmentPropertySource.java
Copy file name to clipboardExpand all lines: spring-cloud-config-server/src/test/java/org/springframework/cloud/config/server/environment/EnvironmentControllerTests.java
0 commit comments