Add generator app for simple table of *AutoConfiguration

Run with "mvn spring-boot:run" and then scrape the Markdown from stdout.
(Result already added to docs/autoconfig.md.)
This commit is contained in:
Dave Syer
2014-02-12 12:39:40 +00:00
parent 52ba2f40dc
commit 89283e46b8
3 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package org.springframework.boot.docs;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.SpringApplicationContextLoader;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = AutoConfigurationDocsApplication.class, loader=SpringApplicationContextLoader.class)
public class ApplicationTests {
@Test
public void contextLoads() {
}
}