@@ -699,7 +699,7 @@ when developing with JSPs are the `InternalResourceViewResolver` and the
699
699
<property name="basename" value="views"/>
700
700
</bean>
701
701
702
- # And a sample properties file is uses (views.properties in WEB-INF/classes):
702
+ # And a sample properties file is used (views.properties in WEB-INF/classes):
703
703
welcome.(class)=org.springframework.web.servlet.view.JstlView
704
704
welcome.url=/WEB-INF/jsp/welcome.jsp
705
705
@@ -721,17 +721,17 @@ can mix different types of views using only one resolver.
721
721
</bean>
722
722
----
723
723
724
- The `InternalResourceBundleViewResolver ` can be configured for using JSPs as described
725
- above. As a best practice, we strongly encourage placing your JSP files in a directory
726
- under the `'WEB-INF'` directory, so there can be no direct access by clients.
724
+ The `InternalResourceViewResolver ` can be configured for using JSPs as described above.
725
+ As a best practice, we strongly encourage placing your JSP files in a directory under
726
+ the `'WEB-INF'` directory, so there can be no direct access by clients.
727
727
728
728
729
729
730
730
[[view-jsp-jstl]]
731
731
=== 'Plain-old' JSPs versus JSTL
732
732
733
- When using the Java Standard Tag Library you must use a special view class, the
734
- `JstlView`, as JSTL needs some preparation before things such as the I18N features will
733
+ When using the JSP Standard Tag Library (JSTL) you must use a special view class, the
734
+ `JstlView`, as JSTL needs some preparation before things such as the I18N features can
735
735
work.
736
736
737
737
@@ -1438,7 +1438,7 @@ The HTML would look like:
1438
1438
A key principle of REST is the use of the Uniform Interface. This means that all
1439
1439
resources (URLs) can be manipulated using the same four HTTP methods: GET, PUT, POST,
1440
1440
and DELETE. For each method, the HTTP specification defines the exact semantics. For
1441
- instance, a GET should always be a safe operation, meaning that is has no side effects,
1441
+ instance, a GET should always be a safe operation, meaning that it has no side effects,
1442
1442
and a PUT or DELETE should be idempotent, meaning that you can repeat these operations
1443
1443
over and over again, but the end result should be the same. While HTTP defines these
1444
1444
four methods, HTML only supports two: GET and POST. Fortunately, there are two possible
0 commit comments