Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
fe1eb8b5
Commit
fe1eb8b5
authored
Jul 25, 2017
by
Johnny Lim
Committed by
Stephane Nicoll
Jul 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
See gh-9855
parent
39b4270b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
deployment.adoc
spring-boot-docs/src/main/asciidoc/deployment.adoc
+2
-2
ConfigurableDataSourceExample.java
...ingframework/boot/jdbc/ConfigurableDataSourceExample.java
+1
-1
README.adoc
spring-boot-samples/spring-boot-sample-cache/README.adoc
+1
-1
DeterminableImports.java
...ramework/boot/context/annotation/DeterminableImports.java
+1
-1
No files found.
spring-boot-docs/src/main/asciidoc/deployment.adoc
View file @
fe1eb8b5
...
@@ -340,7 +340,7 @@ the actual application, running on port 5000. To configure it, add the following
...
@@ -340,7 +340,7 @@ the actual application, running on port 5000. To configure it, add the following
===== Best practices
===== Best practices
====== Uploading binaries instead of sources
====== Uploading binaries instead of sources
By default Elastic Beanstalk uploads sources and compile them in AWS. To upload the
By default Elastic Beanstalk uploads sources and compile
s
them in AWS. To upload the
binaries instead, add the following to your `.elasticbeanstalk/config.yml` file:
binaries instead, add the following to your `.elasticbeanstalk/config.yml` file:
...
@@ -368,7 +368,7 @@ command:
...
@@ -368,7 +368,7 @@ command:
==== Summary
==== Summary
This is one of the easiest way to get to AWS, but there are more things
This is one of the easiest way
s
to get to AWS, but there are more things
to cover, e.g.: how to integrate Elastic Beanstalk into any CI / CD tool, using the
to cover, e.g.: how to integrate Elastic Beanstalk into any CI / CD tool, using the
Elastic Beanstalk maven plugin instead of the CLI, etc. There is a
Elastic Beanstalk maven plugin instead of the CLI, etc. There is a
https://exampledriven.wordpress.com/2017/01/09/spring-boot-aws-elastic-beanstalk-example/[blog]
https://exampledriven.wordpress.com/2017/01/09/spring-boot-aws-elastic-beanstalk-example/[blog]
...
...
spring-boot-docs/src/main/java/org/springframework/boot/jdbc/ConfigurableDataSourceExample.java
View file @
fe1eb8b5
...
@@ -34,7 +34,7 @@ import org.springframework.context.annotation.Primary;
...
@@ -34,7 +34,7 @@ import org.springframework.context.annotation.Primary;
public
class
ConfigurableDataSourceExample
{
public
class
ConfigurableDataSourceExample
{
/**
/**
* A configuration that define
dedicated settings and reuse
* A configuration that define
s dedicated settings and reuses
* {@link DataSourceProperties}.
* {@link DataSourceProperties}.
*/
*/
@Configuration
@Configuration
...
...
spring-boot-samples/spring-boot-sample-cache/README.adoc
View file @
fe1eb8b5
...
@@ -85,7 +85,7 @@ TIP: Run sample cache application using Hazelcast with
...
@@ -85,7 +85,7 @@ TIP: Run sample cache application using Hazelcast with
=== Infinispan
=== Infinispan
Add the `org.infinispan:infinispan-spring4-embedded` dependency to enable support for
Add the `org.infinispan:infinispan-spring4-embedded` dependency to enable support for
Infinispan. There is no default location that Infinispan uses to look for a config
Infinispan. There is no default location that Infinispan uses to look for a config
file so this sample is configured to use
a
the provider `infinispan.xml` configuration
file so this sample is configured to use the provider `infinispan.xml` configuration
file specified via the `spring.cache.infinispan.config` property.
file specified via the `spring.cache.infinispan.config` property.
TIP: Run sample cache application using Infinispan with
TIP: Run sample cache application using Infinispan with
...
...
spring-boot/src/main/java/org/springframework/boot/context/annotation/DeterminableImports.java
View file @
fe1eb8b5
...
@@ -29,7 +29,7 @@ import org.springframework.core.type.AnnotationMetadata;
...
@@ -29,7 +29,7 @@ import org.springframework.core.type.AnnotationMetadata;
* {@link ImportBeanDefinitionRegistrar} implementations when they can determine imports
* {@link ImportBeanDefinitionRegistrar} implementations when they can determine imports
* early. The {@link ImportSelector} and {@link ImportBeanDefinitionRegistrar} interfaces
* early. The {@link ImportSelector} and {@link ImportBeanDefinitionRegistrar} interfaces
* are quite flexible which can make it hard to tell exactly what bean definitions they
* are quite flexible which can make it hard to tell exactly what bean definitions they
* will add. This interface should be used when an implementation consistently result in
* will add. This interface should be used when an implementation consistently result
s
in
* the same imports, given the same source.
* the same imports, given the same source.
* <p>
* <p>
* Using {@link DeterminableImports} is particularly useful when working with Spring's
* Using {@link DeterminableImports} is particularly useful when working with Spring's
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment