소스 검색

Edited macros.md to only render only level for build_an_application

Had to regenerate this guide since the macro for build_an_application_subhead
was mended
Greg Turnquist 13 년 전
부모
커밋
c8187fe526
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0
    1
      README.md

+ 0
- 1
README.md 파일 보기

@@ -246,7 +246,6 @@ The `@ComponentScan` annotation tells Spring to search recursively through the `
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 248
 ### Build an executable JAR
249
------------------------
250 249
 
251 250
 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.
252 251