Phillip Webb
21d80d87a3
Merge branch '1.5.x' into 2.0.x
7 years ago
Phillip Webb
e69296d7d3
Fix checkstyle violations in samples
7 years ago
Spring Buildmaster
010b4fccbd
Next development version
7 years ago
Spring Buildmaster
c10aad165f
Next Development Version
7 years ago
Spring Buildmaster
ade4760842
Next Development Version
7 years ago
Andy Wilkinson
f7c8be1877
Apply java9 profile to JDK 10 (and later) as well as JDK 9
...
See gh-12028
7 years ago
Spring Buildmaster
6414b42335
Next Development Version
7 years ago
Stephane Nicoll
23218add90
Polish
7 years ago
Johnny Lim
6d54072e04
Remove "final" keywords
...
Closes gh-11294
7 years ago
Spring Buildmaster
df2ae7aa19
Next Development Version
7 years ago
Spring Buildmaster
c0f9f64776
Next Development Version
7 years ago
Phillip Webb
2855010841
Fix sample POMs
...
Update sample POMs to follow CI friendly Maven conventions.
See gh-9316
7 years ago
Stephane Nicoll
4caeed2ac4
Disable cassandra test on Java 9
...
See gh-10453
7 years ago
Spring Buildmaster
30eb937a83
Next Development Version
7 years ago
Spring Buildmaster
17a5bb0be4
Next development version
7 years ago
Spring Buildmaster
41c5c0e7c9
Next development version
7 years ago
Spring Buildmaster
05d4d0281c
Next Development Version
8 years ago
Mark Paluch
7e8e2c486e
Adapt to relocated packages in Spring Data Cassandra
...
See gh-9291
8 years ago
Spring Buildmaster
9768b0a8c2
Next Development Version
8 years ago
Spring Buildmaster
d23fa24340
Next Development Version
8 years ago
Spring Buildmaster
5c12500366
Next Development Version
8 years ago
Spring Buildmaster
a2696bf873
Next Development Version
8 years ago
Phillip Webb
53f1df86a2
Merge branch '1.5.x'
8 years ago
Phillip Webb
aacf5d660f
Update copyright year for changed files
8 years ago
Phillip Webb
be3fe12cf0
Polish
8 years ago
Phillip Webb
49fa702708
Merge branch '1.5.x'
8 years ago
Phillip Webb
85504e74a6
Merge branch '1.4.x' into 1.5.x
8 years ago
Mesut Can Gurle
ab2290eecd
Improve Cassandra sample README documentation
...
Update the README file in `spring-boot-sample-data-cassandra` with
details of how to setup the keyspace and create the tables.
Closes gh-7737
8 years ago
Spring Buildmaster
9057f9ae1f
Next development version
8 years ago
Spring Buildmaster
e712a9ba8c
Next Development Version
8 years ago
Andy Wilkinson
e49b5f241e
Merge branch '1.5.x'
8 years ago
Andy Wilkinson
57108a9faa
Try to make the tests for the Cassandra sample more robust
...
Cassandra sometimes takes a long time when dropping the test keyspace.
This results in the test failing due to an exception being thrown.
This commit attempts to make the tests more robust by catching and
logging any exceptions thrown during server cleanup.
8 years ago
Andy Wilkinson
16a0f72df5
Merge branch '1.5.x'
8 years ago
Andy Wilkinson
c108da9d53
Upgrade to Spring Data Ingalls M1
...
Closes gh-6785
Closes gh-5835
8 years ago
Stephane Nicoll
6643ec3713
Next development version
8 years ago
Stephane Nicoll
6bd670edbc
Initiate 1.4.x branch
8 years ago
Spring Buildmaster
7e9ed5e1a7
Next Development Version
8 years ago
Spring Buildmaster
334baaeffd
Next development version
8 years ago
Andy Wilkinson
ccd19ce2c3
Merge branch '1.3.x'
9 years ago
Andy Wilkinson
275651e89a
Skips Cassandra and Elasticsearch tests on Windows
...
Neither Cassandra nor Elasticsearch starts reliably on Windows. This
commit adds a custom class rule to the associated sample application
tests to skip them on Windows. A class rule is used rather than a
Unit assumption as we want to avoid starting Elasticsearch (done by
the application context) and Cassandra (done by a test execution
listener) and an assumption would be too late.
9 years ago
Spring Buildmaster
819a9574a6
Next Development Version
9 years ago
Spring Buildmaster
376bbe68d8
Next Development Version
9 years ago
Andy Wilkinson
66830ea1e5
Try to make SampleCassandraApplicationTests' port config more robust
9 years ago
Phillip Webb
b398b3319c
Rename @SpringApplicationTest -> @SpringBootTest
...
Rename @SpringApplicationTest to SpringBootTest and
@SpringApplicationContextLoader to @SpringBootContextLoader.
Fixes gh-5562
9 years ago
Andy Wilkinson
33f0ea3480
Rework SpringApplicationTest to support web modes
...
Rework the new testing support so that @SpringApplicationTest can be
used for standard integration tests, web integration tests with a
mock Servlet environment and web integration tests with an embedded
servlet container. This means that it a replacement for 1.3's
@IntegrationTest and @WebIntegrationTest and allows all
SpringApplication testing to be configured using a common annotation.
The old @IntegrationTest and @WebIntegrationTest along with their
supporting classes have been reinstated to their previous form (while
remaining deprecated). This should ensure that they continue to work
in 1.4 exactly as they did in 1.3 giving users a smooth path to
@SpringApplicationTest.
See gh-5477
9 years ago
Phillip Webb
0829a1bde8
Drop superfluous annotations
...
Update internal tests to drop annotations that can now
be inferred.
Fixes gh-5470
9 years ago
Phillip Webb
c28f552883
Migrate SpringJUnit4ClassRunner to SpringRunner
...
Replace all existing SpringJUnit4ClassRunner references with the new
SpringRunner alias.
Fixes gh-5292
9 years ago
Phillip Webb
2f815a907a
Migrate existing tests from deprecated package
...
Update the existing tests to use the relocated `spring-boot-test`
classes. Restructuring was achieved using the following command:
find . -type f -name '*.java' -exec sed -i '' \
-e s/org.springframework.boot.test.ConfigFileApplicationContextInitializer/\
org.springframework.boot.test.context.ConfigFileApplicationContextInitializer/g \
-e s/org.springframework.boot.test.EnvironmentTestUtils/\
org.springframework.boot.test.util.EnvironmentTestUtils/g \
-e s/org.springframework.boot.test.IntegrationTest/\
org.springframework.boot.test.context.IntegrationTest/g \
-e s/org.springframework.boot.test.IntegrationTestPropertiesListener/\
org.springframework.boot.test.context.IntegrationTestPropertiesListener/g \
-e s/org.springframework.boot.test.OutputCapture/\
org.springframework.boot.test.rule.OutputCapture/g \
-e s/org.springframework.boot.test.SpringApplicationConfiguration/\
org.springframework.boot.test.context.SpringApplicationConfiguration/g \
-e s/org.springframework.boot.test.SpringApplicationContextLoader/\
org.springframework.boot.test.context.SpringApplicationContextLoader/g \
-e s/org.springframework.boot.test.SpringBootMockServletContext/\
org.springframework.boot.test.mock.web.SpringBootMockServletContext/g \
-e s/org.springframework.boot.test.TestRestTemplate/\
org.springframework.boot.test.web.client.TestRestTemplate/g \
-e s/org.springframework.boot.test.WebIntegrationTest/\
org.springframework.boot.test.context.web.WebIntegrationTest/g {} \;
See gh-5293
9 years ago
Spring Buildmaster
225d877ab9
Next Development Version
9 years ago
Andy Wilkinson
44ddfcc7fa
Upgrade copyright headers of all files changed in 2016
9 years ago