This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/master by this push: new 6a560cd WW-5169 Uses proper links to Java 8 API 6a560cd is described below commit 6a560cdb1793a7b40c3255b9f5853a5a215112cd Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Tue Feb 8 16:18:55 2022 +0100 WW-5169 Uses proper links to Java 8 API --- source/primer.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/primer.md b/source/primer.md index 80c524b..aa39aa7 100644 --- a/source/primer.md +++ b/source/primer.md @@ -110,16 +110,16 @@ Struts, it will help you when your application grows and becomes more complex. #### Properties Files and ResourceBundles {#resources} Java applications, including web applications, are often -configured using [Properties](http://docs.oracle.com/javase/6/docs/api/java/util/Properties) +configured using [Properties](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html) files. Properties files are the basis for the -[ResourceBundles](http://docs.oracle.com/javase/6/docs/api/java/util/ResourceBundle) +[ResourceBundles](https://docs.oracle.com/javase/8/docs/api/java/util/ResourceBundle.html) that the framework uses to provide message resources to an application. The Java Tutorials provide a [great introduction to Properties](http://docs.oracle.com/javase/tutorial/essential/environment/properties). Java ResourceBundles use one or more Properties files to provide internationalized messages -to users based their [Locale](http://docs.oracle.com/javase/6/docs/api/java/util/Locale). +to users based their [Locale](https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html). Support for localizing an application was built into the framework from the ground-up. Again the Java Tutorials provide