소스 검색

Renegerate guides based on updated macros.md

Greg Turnquist 13 년 전
부모
커밋
7da8f7eb45
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0
    2
      README.md

+ 0
- 2
README.md 파일 보기

@@ -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: