Skip to content

Commit a085a12

Browse files
andifalkjzheaux
authored andcommitted
Fix wrong java runtime version mentioned in reference doc
The reference documentation still referred to Java 5.0 as minimum runtime version which is wrong. This commit changes this to the correct Java 8 runtime version as required minimum version. In addition it corrects a fuzzy wording regarding stripping down the `spring-security-core` jar. Fixes gh-7440
1 parent 1c257af commit a085a12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/manual/src/docs/asciidoc/_includes/servlet/architecture/technical-overview.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[[runtime-environment]]
77
=== Runtime Environment
8-
Spring Security 3.0 requires a Java 5.0 Runtime Environment or higher.
8+
Spring Security {spring-security-version} requires a Java 8 Runtime Environment or higher.
99
As Spring Security aims to operate in a self-contained manner, there is no need to place any special configuration files into your Java Runtime Environment.
1010
In particular, there is no need to configure a special Java Authentication and Authorization Service (JAAS) policy file or place Spring Security into common classpath locations.
1111

@@ -17,7 +17,7 @@ This design offers maximum deployment time flexibility, as you can simply copy y
1717

1818
[[core-components]]
1919
=== Core Components
20-
In Spring Security 3.0, the contents of the `spring-security-core` jar were stripped down to the bare minimum.
20+
As of Spring Security 3.0, the contents of the `spring-security-core` jar were stripped down to the bare minimum.
2121
It no longer contains any code related to web-application security, LDAP or namespace configuration.
2222
We'll take a look here at some of the Java types that you'll find in the core module.
2323
They represent the building blocks of the framework, so if you ever need to go beyond a simple namespace configuration then it's important that you understand what they are, even if you don't actually need to interact with them directly.

0 commit comments

Comments
 (0)