Commit Graph

1695 Commits (9815b776d66a6302a8392b629a3cc7f5148b2055)
 

Author SHA1 Message Date
Dave Syer 207d4853ed More defensive testing of tmpdir 11 years ago
Dave Syer 0439b39381 Fix some broken tests in empty new environments 11 years ago
Dave Syer 4c14f6f685 Add support for Apache HttpClient if available 11 years ago
Dave Syer 7a285cf65d Convert all sample tests to @IntegrationTest where appropriate
Makes them a lot more readable IMO, and also enables @Autowiring
from the context into the test case (sweeet). I added @DirtiesContext
to all of them as well to be on the safe side, but possbly that can be
optimized in some way as well.
11 years ago
Dave Syer 123457a588 Add @IntegrationTest annotation for test classes
Allowing use of embededded container in @SpringApplicationConfiguration
tests, e.g.

```
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Config.class)
@WebAppConfiguration
@IntegrationTest
public class SpringApplicationIntegrationTestTests {

	@Test
	public void nestedConfigClasses() {
		String body = new RestTemplate().getForObject("http://localhost:8080/",
				String.class);
		assertEquals("Hello World", body);
	}

	@Configuration
	@EnableWebMvc
	@RestController
	protected static class Config {

		@Bean
		public DispatcherServlet dispatcherServlet() {
			return new DispatcherServlet();
		}

		@Bean
		public EmbeddedServletContainerFactory embeddedServletContainer() {
			return new TomcatEmbeddedServletContainerFactory();
		}

		@RequestMapping("/")
		public String home() {
			return "Hello World";
		}

	}

}
```

Fixes gh-473
11 years ago
Chris Beams 4f62a7c6c2 Fix typo in ConfigFileAppListener#addProper(=>t)ySources 11 years ago
Chris Beams e10856fd9b Refactor SpringApplication Environment config hooks
Per discussion: fixes gh-467
11 years ago
Dave Syer d4083e46fe Add exlcusion to httpcomponents dependency 11 years ago
Piotr Maj 1b167f630c Support for maxWait, jdbcInterceptors and validationInterval
Fixes gh-470
11 years ago
Dave Syer 4d172ca742 Remove duplicate resources from classpath
We had been making a special case for logback.xml anyway, so
extending that to simply deleting recursively all of
src/main/resources (or equivalent) from target/classes (or
equivalent) seems like it's perfectly justifiable.

Fixes gh-451
11 years ago
Dave Syer 6657e3ef84 More care taken with management.contextPath
The management.contextPath property should now be respected in a
secure application, whether or not the management.port is different.

Added some test cases in the sample to verify.

Fixes gh-469
11 years ago
Andy Wilkinson 44826812db Add templates/** to list of default includes for CLI jars
Boot promotes the use of a templates directory for housing view
templates. Include this directory by default when building a jar file
from a CLI app.

Fixes #455
11 years ago
Piotr Maj cb6739b4a5 Added testWhileIdle etc.
Fixes gh-463
11 years ago
Andy Piper 695b3917b2 fix link to install.txt
Explicitly link to install.txt in source repo to avoid issues on projects.spring.io with a broken relative link
... also fix this for rendered markdown on GH itself :-)
11 years ago
Dave Syer c9efa5ac13 Allow non-string return from health query 11 years ago
Andy Piper 9d4e940f56 fixup yaml codeblock 11 years ago
Andy Piper 7b4fa22b40 Fix typo 11 years ago
Sebastien Deleuze ab6c8dfee3 Use org.springframework.boot groupId in spring-boot-samples
Use org.springframework.boot instead of ${project.groupId}
groupId in order to make it easier to use spring-boot-samples
modules as a starting point for new projects.
11 years ago
Dave Syer c68902260e Change explicit bean type to concrete NamedParameterJdbcTemplate
Fixes gh-447
11 years ago
Josh Long 9453a6324a polishing documentation 11 years ago
Dave Syer da7d543305 Remove assumption in test about /tmp location 11 years ago
Dave Syer 8168e8a327 Special case for root of classpath resource in archive
This turns out to affect JPA, but only because it looks for a URL for the
root of the classpath using ClassLoader.getResource("") which barfs in
an app launched from an executable JAR. It's easy to make a special case
for "" in the class loader, so I went ahead and did that. Possibly need
to think what the implication of getResources("") is as well (not
tested in an app yet).

Fixes gh-420
11 years ago
Dave Syer afac085318 Use java.io.tmpdir instead of /tmp
Fixes gh-441
11 years ago
Dave Syer 77fd127e09 Use redis starter in sample 11 years ago
Dave Syer aebf3c2bef Tweak external config file loading to support additional profiles
Profiles set with Environment.setActiveProfiles() (rather than
spring.profiles.active) *before* any config files are processed, are
treated as "additional" (to the ones supplied in spring.profiles.active
from all sources, files and System properties included).

Fixes gh-429
11 years ago
Dave Syer de9b6a6a22 Switch off debug in secure sample
Fixes gh-438
11 years ago
Dave Syer c53a36717d Consider subtypes in exception error page mapping
Fixes gh-417
11 years ago
Dave Syer a0ba8c90a6 Add MultipartConfig to DispatcherServlet by default
RC4 added a ServletRegistrationBaen for teh DispatcherServlet and we
didn't register a MultipartConfigElement if one was present.

Fixes gh-427
11 years ago
Dave Syer ffe91ca6bf Change exception message for missing Thymeleaf templates
Fixes gh-424
11 years ago
Dave Syer 6b83e0ad5d Change bean name of ContentNegotiatingViewResolver
Fixed gh-428
11 years ago
Dave Syer 15372cb737 Add Maven example for Tomcat 8
Fixes gh-430
11 years ago
Dave Syer f9094143d7 Remove undefined FILE appender from basic log4j config
Fixes gh-433
11 years ago
Dave Syer b56bd0a10c Add ViewResolver docs 11 years ago
Dave Syer 3bc37ddde0 Strip out most of websocket autoconfig
... leaving only the embedded Tomcat enabling feature (registering
the WsSci).

Fixes part of gh-65
11 years ago
Andy Wilkinson 326c12d1f5 Update Spring repository url in Gradle samples 11 years ago
Phillip Webb 7e60b1996b Fixup starter-parent POM 11 years ago
Phillip Webb 6934b340ce Update README to RC4 11 years ago
Phillip Webb 1995b62530 Fixup starter-parent POM 11 years ago
Spring Buildmaster b0d4e8ae69 Next development version 11 years ago
Spring Buildmaster cb8668a151 Release version 1.0.0.RC4 11 years ago
Phillip Webb 02faa0af0d Merge pull request #415 from adambro/patch-2
* patch-2:
  Correct link to samples.
11 years ago
Adam Brodziak 45cd52586b Correct link to samples.
Fixes gh-415
11 years ago
Phillip Webb 6c8e81f870 Rework ErrorWrapperEmbeddedServletContainerFactory
Rename ErrorWrapperEmbeddedServletContainerFactory to ErrorPageFilter
and extend AbstractConfigurableEmbeddedServletContainer rather
than AbstractEmbeddedServletContainerFactory.

Fixes gh-416
11 years ago
Phillip Webb 99350a2216 Tidy ConfigurableEmbeddedServletContainerFactory
Rename ConfigurableEmbeddedServletContainerFactory to
ConfigurableEmbeddedServletContainer and extract
AbstractConfigurableEmbeddedServletContainer from
AbstractEmbeddedServletContainerFactory.
11 years ago
Phillip Webb 3f9ca68812 Tweak ConfigurableEmbeddedServletContainerFactory
Update ConfigurableEmbeddedServletContainerFactory to no longer directly
extend EmbeddedServletContainerFactory.
11 years ago
Phillip Webb 9c4dc0c68f Drop getPort from ConfEmbServletContainerFactory
Remove getPort() from ConfigurableEmbeddedServletContainerFactory to
keep the interface primarily setters.
11 years ago
Phillip Webb 468728a2c0 Polish 11 years ago
Dave Syer 07b88630f4 Be defensive with auto-config of Servlet 3.0 features
There's no explicit support for older Servlet specs in Spring Boot,
but we can at least make it easy for others to provide such
support by not adding stuff to the context when in an older container.
11 years ago
Dave Syer 8ff9e67714 Add actuator to method security sample 11 years ago
Dave Syer 9504f6e5a9 Add method security web sample
Useful sample for common use case where user adds custom Authentication,
a form login, *and* global method security all the the same application.
11 years ago