Stephane Nicoll
eeb95693b3
Fixup version numbers following release
8 years ago
Spring Buildmaster
2216369348
Next Development Version
8 years ago
Stephane Nicoll
8cbbb577a0
Fixup version numbers following release
9 years ago
Spring Buildmaster
819a9574a6
Next Development Version
9 years ago
Stephane Nicoll
72c2454218
Fixup version numbers following release
9 years ago
Spring Buildmaster
376bbe68d8
Next Development Version
9 years ago
Andy Wilkinson
e8e728106e
Don’t expect a charset attribute on a text/css Content-Type
...
Following the encoding change made in 428a10a
, the character encoding
of a response is no longer forced.
See gh-5459
9 years ago
Phillip Webb
609cb52cd4
Move to relocated web classes
...
Refactor code to move from recently deprecated classes.
Closes gh-5822
9 years ago
Phillip Webb
a7cb689f95
Move @LocalServerPort annotation
...
Move the @LocalServerPort to org.springframework.boot.context.embedded
since it's only really useful when working with embedded servlet
containers.
See gh-5822
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
Stephane Nicoll
f7ffb017ad
Relocate static asset
...
Closes gh-5504
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
Stephane Nicoll
2526a54e31
Polish contribution
...
Closes gh-5337
9 years ago
Stephane Nicoll
5680ffdedb
Fixup version numbers following release
9 years ago
Spring Buildmaster
225d877ab9
Next Development Version
9 years ago
Phillip Webb
95c4cdbedc
Fix packages and annotations used in sample
...
Update a few of the samples to correct the packages used in tests and
to make use of the `@SpringBootApplication` annotation.
9 years ago
Phillip Webb
1cc1fc6431
Use AssertJ in spring-boot-samples
...
See gh-5083
9 years ago
Phillip Webb
fbaf209240
Move master to 1.4.0.BUILD-SNAPSHOT
9 years ago
Phillip Webb
c77a7e0cba
Fixup version numbers following release
9 years ago
Spring Buildmaster
504d3e97ba
Next development version
9 years ago
Stephane Nicoll
ecf56f0708
Fixup version numbers following release
9 years ago
Spring Buildmaster
8db59059a5
Next Development Version
9 years ago
Stephane Nicoll
14e7b10310
Fixup version numbers following release
9 years ago
Spring Buildmaster
3f6f57a80e
Next Development Version
9 years ago
Huang YunKun
1c5e445554
Update the samples to use @WebIntegrationTest and randomPort=true
...
Closes gh-4294
Closes gh-4271
9 years ago
Phillip Webb
634bb770b2
Organize imports with new settings
...
See gh-4234
9 years ago
Phillip Webb
1e4d974ec0
Merge remote-tracking branch 'local12x/1.2.x'
9 years ago
Phillip Webb
a79131f8d2
Organize imports with new settings
...
See gh-4234
9 years ago
Spring Buildmaster
2b38a861e3
Next Development Version
9 years ago
Phillip Webb
d84889b03c
Revert "Compile samples and integration tests with Java 8"
...
This reverts commit 09395f956a
.
9 years ago
Phillip Webb
e473364e4e
Merge branch '1.2.x'
9 years ago
Phillip Webb
6ab376e2e8
Reformat code use Eclipse Mars
9 years ago
Phillip Webb
47576354f7
Merge branch '1.2.x'
9 years ago
Phillip Webb
09395f956a
Compile samples and integration tests with Java 8
...
Update the samples and integration tests to use Java 8. There's no
specific reason to keep them on Java 6 and it helps keep Eclipse happy
if we upgrade.
9 years ago
Phillip Webb
d22d0683b2
Fixup build following release
9 years ago
Spring Buildmaster
9409c49c10
Next development version
9 years ago
Phillip Webb
2615990ffb
Organize imports
9 years ago
Stephane Nicoll
7c0c953f81
Add value alias for SpringApplicationConfiguration
...
Given that Spring Boot uses java config accross the board, a new `value`
attribute is now aliased to the existing `classes` attribute such that
one could write the following:
@SpringApplicationConfiguration(MyConfig.class)
public class MyTest {}
Closes gh-3635
9 years ago
Stephane Nicoll
7c3cdead28
Remove unnecessary mainClassName
...
Since each sample has (supposedly) only one application class and not
a lot of the code, the `mainClassName` attribute in the gradle build is
not really useful and can lead to inconsistency if the application class
is moved.
See gh-3588
9 years ago
Phillip Webb
43dc0c64c2
Fixup version numbers following release
10 years ago
Spring Buildmaster
7ce391db4f
Next development version
10 years ago
Phillip Webb
61fc4f3f12
Polish copyright headers
10 years ago
Phillip Webb
1ce617f1ae
Polish sample package names
10 years ago
Stephane Nicoll
b847b6fa4b
Fixup version numbers following release
10 years ago
Spring Buildmaster
5d81c87b43
Next Development Version
10 years ago
Andy Wilkinson
4452bb1873
Revert "Upgrade Gradle plugin’s ID so it’s suitable for the Plugin Portal"
...
This reverts commit b1c0a7cda4
.
The plugin publishing process has moved to a new plugin-based approach
that brings with it some significant limitations:
- There's no staging to allow the promotion of good release builds
- There's no easy way to upload an existing artifact
- There's no control over the published pom.
The risk brought by these limitations, particularly the first, are
too great so we will no be publishing the Boot plugin to the Portal
until they're resolved.
Changing the plugin's ID was a breaking change that would require
users to do some work when they upgrade to Boot 1.3. The ID of the
plugin was changed purely so that it met the Portal's requirements.
Given that the plugin will not be published to the Portal for the
foreseaable future there's no need for us to inflict a breaking change
on people when there will be no benefit.
See gh-1567
10 years ago
Phillip Webb
42e69359a8
Fixup version numbers following release
10 years ago
Spring Buildmaster
e03c11dda8
Next development version
10 years ago
Andy Wilkinson
b1c0a7cda4
Upgrade Gradle plugin’s ID so it’s suitable for the Plugin Portal
...
Gradle’s plugin portal requires each plugin’s ID to be in a namespace.
Our existing ID, spring-boot, does not meet this requirement. This
commit changes the plugin’s ID to org.springframework.boot.spring-boot.
Note that, as is recommended [1], the plugin’s ID does not include
“gradle”.
See gh-1567
[1] http://plugins.gradle.org/submit
10 years ago
Phillip Webb
a57a88f5cf
Move master to 1.3.0.BUILD-SNAPSHOT
10 years ago
Phillip Webb
8ce39bda88
Fixup version numbers following release
10 years ago
Spring Buildmaster
8f0ad02237
Next development version
10 years ago
Phillip Webb
9dd4d43cec
Fixup version numbers following release
10 years ago
Spring Buildmaster
60725cd8bd
Next development version
10 years ago
Phillip Webb
43fb5b63a8
Fixup version numbers following release
10 years ago
Spring Buildmaster
1a788c1741
Next development version
10 years ago
Dave Syer
998c29c4aa
Add java.version to Tomcat WAR projects
10 years ago
Andy Wilkinson
5b671847d3
Merge branch '1.1.x'
10 years ago
Andy Wilkinson
ccbc606dad
Use relative paths so index is unaffected by its context path
...
Previously, index.html used absolute paths to load its CSS and
JavaScript. This meant that it had to be deployed to /. This commit
updates the HTML to use relative paths for its CSS and JavaScript,
thereby ensuring that they can be loaded irrespective of the context
path to which the application is deployed.
Closes gh-1988
10 years ago
Phillip Webb
345ced1675
Fixup version numbers following release
10 years ago
Spring Buildmaster
46b7738334
Next development version
10 years ago
Phillip Webb
b947d6001d
Polish
10 years ago
Stephane Nicoll
109c3a3439
Auto configure CharacterEncodingFilter
...
Provide a default UTF-8 encoding for HTTP requests and responses unless
specified otherwise.
Fixes gh-1182
10 years ago
Phillip Webb
d039f43107
Update samples to use @SpringBootApplication
...
Update the relevant samples to use the new @SpringBootApplication
annotation.
Closes gh-1842
10 years ago
Phillip Webb
3228cfa9bd
Fixup version numbers following release
10 years ago
Spring Buildmaster
3e71a21b30
Next development version
10 years ago
Phillip Webb
4f9258a345
Fixup version numbers following release
10 years ago
Spring Buildmaster
edb4b7ed7d
Next development version
10 years ago
Phillip Webb
338288205b
Fixup version numbers following release
10 years ago
Spring Buildmaster
d63e4b4329
Next development version
10 years ago
Phillip Webb
6b083d7e0b
Merge branch '1.1.x'
...
Conflicts:
pom.xml
spring-boot-actuator/pom.xml
spring-boot-autoconfigure/pom.xml
spring-boot-cli/pom.xml
spring-boot-dependencies/pom.xml
spring-boot-docs/pom.xml
spring-boot-full-build/pom.xml
spring-boot-integration-tests/pom.xml
spring-boot-parent/pom.xml
spring-boot-samples/pom.xml
spring-boot-samples/spring-boot-sample-actuator-log4j/pom.xml
spring-boot-samples/spring-boot-sample-actuator-noweb/pom.xml
spring-boot-samples/spring-boot-sample-actuator-ui/pom.xml
spring-boot-samples/spring-boot-sample-actuator/pom.xml
spring-boot-samples/spring-boot-sample-amqp/pom.xml
spring-boot-samples/spring-boot-sample-aop/pom.xml
spring-boot-samples/spring-boot-sample-batch/pom.xml
spring-boot-samples/spring-boot-sample-data-elasticsearch/pom.xml
spring-boot-samples/spring-boot-sample-data-gemfire/pom.xml
spring-boot-samples/spring-boot-sample-data-jpa/pom.xml
spring-boot-samples/spring-boot-sample-data-mongodb/pom.xml
spring-boot-samples/spring-boot-sample-data-redis/pom.xml
spring-boot-samples/spring-boot-sample-data-rest/pom.xml
spring-boot-samples/spring-boot-sample-data-solr/pom.xml
spring-boot-samples/spring-boot-sample-flyway/pom.xml
spring-boot-samples/spring-boot-sample-hornetq/pom.xml
spring-boot-samples/spring-boot-sample-integration/pom.xml
spring-boot-samples/spring-boot-sample-jetty/pom.xml
spring-boot-samples/spring-boot-sample-liquibase/pom.xml
spring-boot-samples/spring-boot-sample-parent-context/pom.xml
spring-boot-samples/spring-boot-sample-profile/pom.xml
spring-boot-samples/spring-boot-sample-secure/pom.xml
spring-boot-samples/spring-boot-sample-servlet/pom.xml
spring-boot-samples/spring-boot-sample-simple/pom.xml
spring-boot-samples/spring-boot-sample-tomcat-multi-connectors/pom.xml
spring-boot-samples/spring-boot-sample-tomcat/pom.xml
spring-boot-samples/spring-boot-sample-tomcat8-jsp/pom.xml
spring-boot-samples/spring-boot-sample-traditional/pom.xml
spring-boot-samples/spring-boot-sample-web-freemarker/pom.xml
spring-boot-samples/spring-boot-sample-web-groovy-templates/pom.xml
spring-boot-samples/spring-boot-sample-web-jsp/pom.xml
spring-boot-samples/spring-boot-sample-web-method-security/pom.xml
spring-boot-samples/spring-boot-sample-web-secure/pom.xml
spring-boot-samples/spring-boot-sample-web-static/pom.xml
spring-boot-samples/spring-boot-sample-web-ui/pom.xml
spring-boot-samples/spring-boot-sample-web-velocity/pom.xml
spring-boot-samples/spring-boot-sample-websocket/pom.xml
spring-boot-samples/spring-boot-sample-ws/pom.xml
spring-boot-samples/spring-boot-sample-xml/pom.xml
spring-boot-starters/pom.xml
spring-boot-starters/spring-boot-starter-actuator/pom.xml
spring-boot-starters/spring-boot-starter-amqp/pom.xml
spring-boot-starters/spring-boot-starter-aop/pom.xml
spring-boot-starters/spring-boot-starter-batch/pom.xml
spring-boot-starters/spring-boot-starter-data-elasticsearch/pom.xml
spring-boot-starters/spring-boot-starter-data-gemfire/pom.xml
spring-boot-starters/spring-boot-starter-data-jpa/pom.xml
spring-boot-starters/spring-boot-starter-data-mongodb/pom.xml
spring-boot-starters/spring-boot-starter-data-rest/pom.xml
spring-boot-starters/spring-boot-starter-data-solr/pom.xml
spring-boot-starters/spring-boot-starter-freemarker/pom.xml
spring-boot-starters/spring-boot-starter-groovy-templates/pom.xml
spring-boot-starters/spring-boot-starter-hornetq/pom.xml
spring-boot-starters/spring-boot-starter-integration/pom.xml
spring-boot-starters/spring-boot-starter-jdbc/pom.xml
spring-boot-starters/spring-boot-starter-jetty/pom.xml
spring-boot-starters/spring-boot-starter-log4j/pom.xml
spring-boot-starters/spring-boot-starter-logging/pom.xml
spring-boot-starters/spring-boot-starter-mobile/pom.xml
spring-boot-starters/spring-boot-starter-parent/pom.xml
spring-boot-starters/spring-boot-starter-redis/pom.xml
spring-boot-starters/spring-boot-starter-remote-shell/pom.xml
spring-boot-starters/spring-boot-starter-security/pom.xml
spring-boot-starters/spring-boot-starter-social-facebook/pom.xml
spring-boot-starters/spring-boot-starter-social-linkedin/pom.xml
spring-boot-starters/spring-boot-starter-social-twitter/pom.xml
spring-boot-starters/spring-boot-starter-test/pom.xml
spring-boot-starters/spring-boot-starter-thymeleaf/pom.xml
spring-boot-starters/spring-boot-starter-tomcat/pom.xml
spring-boot-starters/spring-boot-starter-velocity/pom.xml
spring-boot-starters/spring-boot-starter-web/pom.xml
spring-boot-starters/spring-boot-starter-websocket/pom.xml
spring-boot-starters/spring-boot-starter-ws/pom.xml
spring-boot-starters/spring-boot-starter/pom.xml
spring-boot-tools/pom.xml
spring-boot-tools/spring-boot-dependency-tools/pom.xml
spring-boot-tools/spring-boot-gradle-plugin/pom.xml
spring-boot-tools/spring-boot-loader-tools/pom.xml
spring-boot-tools/spring-boot-loader/pom.xml
spring-boot-tools/spring-boot-maven-plugin/pom.xml
spring-boot-versions/pom.xml
spring-boot/pom.xml
10 years ago
Phillip Webb
cac3865ffa
Fixup version numbers following release
10 years ago
Spring Buildmaster
74d0c5185a
Next development version
10 years ago
Stephane Nicoll
249e09d9bc
Switch master to 1.2.0.BUILD-SNAPSHOT
11 years ago
Phillip Webb
3c7d825658
Fixup version numbers following release
11 years ago
Spring Buildmaster
40327e1ae6
Next development version
11 years ago
Phillip Webb
fa88c481a5
Remote trailing whitespace
11 years ago
Phillip Webb
cc61d92b88
Fixup build following release
11 years ago
Spring Buildmaster
981669b7c0
Next development version
11 years ago
Phillip Webb
200cd535c2
Revert "Next development version"
...
This reverts commit 67189477fe
.
11 years ago
Spring Buildmaster
67189477fe
Next development version
11 years ago
Phillip Webb
91bbd20ca0
Fixup version numbers following release
11 years ago
Spring Buildmaster
542f3cbda8
Next development version
11 years ago
Phillip Webb
143e1918b7
Fixup versions following release
11 years ago
Spring Buildmaster
4ca26a21dc
Next development version
11 years ago
Phillip Webb
9e93719922
Fixup version numbers following release
11 years ago
Spring Buildmaster
05ed7b3bcd
Next development version
11 years ago
Phillip Webb
3007a777d0
Roll back to 1.1.0.BUILD-SNAPSHOT
11 years ago
Phillip Webb
5adbf32c18
Fixup version numbers following release
11 years ago
Spring Buildmaster
c650f2391e
Next development version
11 years ago
Dave Syer
2c087d4787
Update Boot version in gradle samples
11 years ago
Phillip Webb
64a835e91a
Move master to 1.1.0.BUILD-SNAPSHOT
11 years ago
Spring Buildmaster
d3954a1703
Next development version
11 years ago
Phillip Webb
fad5ce45db
Polish
11 years ago
Dave Syer
559009b8cf
Support for random ports in @IntegrationTest
...
User can now set up default properties in the Environment using
@IntegrationTest("foo:bar", "x:y") etc. Using "server.port:0" you
can get Tomcat or Jetty to spin up on a random port. We also add
a test listener that populates "local.server.port" with the actual
port the server started on so you can @Value("${local.server.port}")
inject it into the test case.
See gh-607 (this should make the extension of that PR to samples
much easier)
11 years ago
Dave Syer
d613cc795e
SpringSource->spring-projects
11 years ago
Spring Buildmaster
a5864ebcd0
Next development version
11 years ago
Spring Buildmaster
15e9dbe98b
Next development version
11 years ago
Phillip Webb
0af7f7e347
Add missing POM info
11 years ago
Phillip Webb
488b03387f
Polish POM formatting
11 years ago
Phillip Webb
6f9bb233ad
Revert "Next development version"
...
This reverts commit b67bb70ee3
.
11 years ago
Spring Buildmaster
b67bb70ee3
Next development version
11 years ago
Phillip Webb
ac4cdd33c3
Revert "Next development version"
...
This reverts commit 1d0eea12eb
.
Returning to 1.0.0.BUILD-SNAPSHOT for an updated release.
11 years ago
Spring Buildmaster
1d0eea12eb
Next development version
11 years ago
Phillip Webb
aca67066bf
Rename RestTemplates to TestRestTemplate
...
Rename the RestTemplates to TestRestTemplate to help indicate that it's
primarily intended for testing. Also now extend RestTemplate to allow
direct use, rather than via factory methods.
Fixes gh-599
11 years ago
Phillip Webb
f70d6fb411
Declare all repositories in build samples
...
Update Gradle and Ant samples to consistently declare all repositories
(local, central, release, snapshot, milestone).
Fixes gh-426
11 years ago
Phillip Webb
632af6b1ab
Polish gradle examples
...
Spaces -> Tabs, version number, whitespace.
11 years ago
Andy Wilkinson
a20f8b4be0
Add missing JQuery and Bootstrap dependencies
...
Fixes #531
11 years ago
Phillip Webb
08b9592606
Polish spaces -> tabs
11 years ago
Dave Syer
a8ba80bbf4
Add build.gradle samples and docs for deployable WAR
...
Fixes gh-518
11 years ago
Phillip Webb
80ac1fb0cd
Polish
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
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
Spring Buildmaster
b0d4e8ae69
Next development version
11 years ago
Spring Buildmaster
cb8668a151
Release version 1.0.0.RC4
11 years ago
Spring Buildmaster
1367d57e8c
Next development version
11 years ago
Spring Buildmaster
eaff1677a7
Release version 1.0.0.RC3
11 years ago
Phillip Webb
4a58171b5c
A few more package tweaks
...
Improve package structure and include package-info javadoc.
11 years ago
Phillip Webb
0160760568
Apply latest eclipse cleanup rules
11 years ago
Phillip Webb
68293f34af
Upgrade version to 1.0.0.BUILD-SNAPSHOT
...
Fixes fg-243
11 years ago
Dave Syer
d53a52cf1a
Fix test
11 years ago
Dave Syer
d01bc59d7e
Update to bootstrap 3.0.3
11 years ago
Dave Syer
aded7435b5
Swicth to webjars for static sample
11 years ago
Dave Syer
559f907b54
Use explicit test dependencies in samples
11 years ago
Dave Syer
f5f41fef5e
Check that WAR apps work in a container
11 years ago
Dave Syer
f448e79f29
Remove long package names from samples
...
Long package names are really unnecessary in samples and they
just clutter things up. Also Spring Loaded doesn't work with
org.sfw packages, so to demo that technology you need a
different package name.
11 years ago
Phillip Webb
64f32893bb
Source format and clean-up
11 years ago
Phillip Webb
b772f7c2e4
Polish
...
Minor formatting and consistent copyright header.
11 years ago
Phillip Webb
a33425920b
Rework POMs to support automated CI release
11 years ago
Dave Syer
38e565e920
Back to SNAPSHOT for dev
11 years ago
Dave Syer
b634b3bde6
Update to 0.5.0.M2
11 years ago
Phillip Webb
a95494fe61
Remove '/resources/**' mapping and default servlet
...
Remove '/resources/**' mapping since it can cause problems with the
'/**' when the developer defines their own 'resources' sub-folder.
Also remove default servlet config since the resources mapping renders
it redundant.
Issue: #55494446
11 years ago
Dave Syer
43fc107437
Fix security config
...
The management endpoints were still all mixed up
with the user endpoints. Fixed that and extracted
user endpoints in to conditional block so not
protected if path explicitly set to empty string.
[#53029715 ]
11 years ago
Biju Kunjummen
fa3b593568
Removed spring-boot related version from dependencies of samples
11 years ago
Dave Syer
d205d9404a
Add additional ViewResolver configuration
...
The DispatcherServlet adds a default InternalViewResolver
which was used by some apps, but when the actuator was
available it added an "/error" bean and effectively
switched off the default view resolver. The net fix was
to add an InternalViewResolver at the same time as
adding any other ViewResolvers.
[Fixes #55357516 ] [bs-290] Actuator UI app cannot serve static index.html
11 years ago
Phillip Webb
d86bf66645
Add parent relativePath
...
Update sample applications to correctly refer to parent relativePath.
11 years ago
Dave Syer
3922a7f526
Reinstate junit dependencies in starters
11 years ago
Dave Syer
4bb5de02e7
Switch back to SNAPSHOT for dev
11 years ago
Dave Syer
68e5a7e887
Bump version to 0.5.0.M1
11 years ago
Phillip Webb
3bb79db579
Renamed spring-boot-ups -> spring-boot-starter
11 years ago
Dave Syer
2f0a96c986
Remove unused @ComponentScan
11 years ago
Dave Syer
6d76467a66
Add responsive features to static sample
11 years ago
Phillip Webb
36c3ceab97
Include servlet support for index.html resources
...
Issue: #54228642
11 years ago
Phillip Webb
728829ba81
Revert welcome file defaults
...
Revert welcome file default that break existing tests.
Issue: #54228642
11 years ago
Dave Syer
fe90df3afc
Remove WARN log in Tomcat startup
11 years ago
Dave Syer
4c359e1a4d
Two choices are available to users for welcome page
...
* For a jar deployment add classpath:static/index.html
(works via Spring MVC mapping)
* For a war the same thing works, but so does adding
index.html to src/main/webapp (works via container
default servlet)
[Fixes #54092261 ] [bs-252]
11 years ago