Kaynağa Gözat

Remove extraneous paragraph

Greg Turnquist 13 yıl önce
ebeveyn
işleme
cec51d2cf0
2 değiştirilmiş dosya ile 2 ekleme ve 6 silme
  1. 1
    3
      README.ftl.md
  2. 1
    3
      README.md

+ 1
- 3
README.ftl.md Dosyayı Görüntüle

160
 
160
 
161
 This change isn't about comparing Tomcat vs. Jetty. Instead, it demonstrates how Spring Boot reacts to what is on your classpath.
161
 This change isn't about comparing Tomcat vs. Jetty. Instead, it demonstrates how Spring Boot reacts to what is on your classpath.
162
 
162
 
163
-Another example is [Uploading Files][gs-uploading-files]. In that guide, you can see how Spring Boot reacts to adding a `MultipartConfigElement` to your application context. Spring Boot automatically plugs that bean into the DispatcherServlet and adds some other beans needed to support file uploads.
164
-
165
 As you can see below, the code is the same as before:
163
 As you can see below, the code is the same as before:
166
 
164
 
167
     <@snippet path="src/main/java/hello/Application.java" prefix="complete"/>
165
     <@snippet path="src/main/java/hello/Application.java" prefix="complete"/>
232
 
230
 
233
 Otherwise, everything is the same, as it should be. Most beans listed above provide Spring MVC's production-grade features. Simply swapping one part, the servlet container, shouldn't cause a system-wide ripple.
231
 Otherwise, everything is the same, as it should be. Most beans listed above provide Spring MVC's production-grade features. Simply swapping one part, the servlet container, shouldn't cause a system-wide ripple.
234
 
232
 
235
-Add consumer-grade services
233
+Add production-grade services
236
 ------------------------------
234
 ------------------------------
237
 If you are building a web site for your business, you probably need to add some management services. Spring Boot provides several out of the box with its [actuator module][spring-boot-actuator], such as health, audits, beans, and more.
235
 If you are building a web site for your business, you probably need to add some management services. Spring Boot provides several out of the box with its [actuator module][spring-boot-actuator], such as health, audits, beans, and more.
238
 
236
 

+ 1
- 3
README.md Dosyayı Görüntüle

277
 
277
 
278
 This change isn't about comparing Tomcat vs. Jetty. Instead, it demonstrates how Spring Boot reacts to what is on your classpath.
278
 This change isn't about comparing Tomcat vs. Jetty. Instead, it demonstrates how Spring Boot reacts to what is on your classpath.
279
 
279
 
280
-Another example is [Uploading Files][gs-uploading-files]. In that guide, you can see how Spring Boot reacts to adding a `MultipartConfigElement` to your application context. Spring Boot automatically plugs that bean into the DispatcherServlet and adds some other beans needed to support file uploads.
281
-
282
 As you can see below, the code is the same as before:
280
 As you can see below, the code is the same as before:
283
 
281
 
284
 `src/main/java/hello/Application.java`
282
 `src/main/java/hello/Application.java`
379
 
377
 
380
 Otherwise, everything is the same, as it should be. Most beans listed above provide Spring MVC's production-grade features. Simply swapping one part, the servlet container, shouldn't cause a system-wide ripple.
378
 Otherwise, everything is the same, as it should be. Most beans listed above provide Spring MVC's production-grade features. Simply swapping one part, the servlet container, shouldn't cause a system-wide ripple.
381
 
379
 
382
-Add consumer-grade services
380
+Add production-grade services
383
 ------------------------------
381
 ------------------------------
384
 If you are building a web site for your business, you probably need to add some management services. Spring Boot provides several out of the box with its [actuator module][spring-boot-actuator], such as health, audits, beans, and more.
382
 If you are building a web site for your business, you probably need to add some management services. Spring Boot provides several out of the box with its [actuator module][spring-boot-actuator], such as health, audits, beans, and more.
385
 
383