Selaa lähdekoodia

Renegerate guides based on updated macros.md

Greg Turnquist 13 vuotta sitten
vanhempi
commit
7da8f7eb45
1 muutettua tiedostoa jossa 0 lisäystä ja 2 poistoa
  1. 0
    2
      README.md

+ 0
- 2
README.md Näytä tiedosto

@@ -245,8 +245,6 @@ The `@ComponentScan` annotation tells Spring to search recursively through the `
245 245
 
246 246
 The [`@EnableAutoConfiguration`][] annotation switches on reasonable default behaviors based on the content of your classpath. For example, because the application depends on the embeddable version of Tomcat (tomcat-embed-core.jar), a Tomcat server is set up and configured with reasonable defaults on your behalf. And because the application also depends on Spring MVC (spring-webmvc.jar), a Spring MVC [`DispatcherServlet`][] is configured and registered for you — no `web.xml` necessary! Auto-configuration is a powerful, flexible mechanism. See the [API documentation][`@EnableAutoConfiguration`] for further details.
247 247
 
248
-###Build an executable JAR
249
-
250 248
 Now that your `Application` class is ready, you simply instruct the build system to create a single, executable jar containing everything. This makes it easy to ship, version, and deploy the service as an application throughout the development lifecycle, across different environments, and so forth.
251 249
 
252 250
 Add the following configuration to your existing Maven POM: