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
8ff0a9c5
Commit
8ff0a9c5
authored
Mar 12, 2019
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x'
parents
3e9416c2
7f582cc7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
4 deletions
+3
-4
howto.adoc
...oot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
+1
-1
spring-boot-features.adoc
...ing-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+1
-1
NoSuchMethodFailureAnalyzerTests.java
...iagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java
+0
-1
README.adoc
...gration-tests/spring-boot-launch-script-tests/README.adoc
+1
-1
No files found.
spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc
View file @
8ff0a9c5
...
...
@@ -2627,7 +2627,7 @@ There are several options for hot reloading. The recommended approach is to use
additional development-time features, such as support for fast application restarts
and LiveReload as well as sensible development-time configuration (such as template
caching). Devtools works by monitoring the classpath for changes. This means that static
resource changes must be "built" for the change to take
a
ffect. By default, this happens
resource changes must be "built" for the change to take
e
ffect. By default, this happens
automatically in Eclipse when you save your changes. In IntelliJ IDEA, the Make Project
command triggers the necessary build. Due to the
<<using-spring-boot.adoc#using-boot-devtools-restart-exclude, default restart
...
...
spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
View file @
8ff0a9c5
...
...
@@ -8708,7 +8708,7 @@ documentation] for more details. You also need to
{junit5-documentation}/#writing-tests-test-instance-lifecycle-changing-default[switch test
instance lifecycle to "per-class"].
To mock Kotlin classes, https://mockk.io/[Mock
k
] is recommended. If you need the `Mockk`
To mock Kotlin classes, https://mockk.io/[Mock
K
] is recommended. If you need the `Mockk`
equivalent of the Mockito specific
<<boot-features-testing-spring-boot-applications-mocking-beans,`@MockBean` and `@SpyBean`
annotations>>, you can use https://github.com/Ninja-Squad/springmockk[SpringMockK] which
...
...
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/diagnostics/analyzer/NoSuchMethodFailureAnalyzerTests.java
View file @
8ff0a9c5
...
...
@@ -44,7 +44,6 @@ public class NoSuchMethodFailureAnalyzerTests {
assertThat
(
failure
).
isNotNull
();
FailureAnalysis
analysis
=
new
NoSuchMethodFailureAnalyzer
().
analyze
(
failure
);
assertThat
(
analysis
).
isNotNull
();
System
.
out
.
println
(
analysis
.
getDescription
());
assertThat
(
analysis
.
getDescription
())
.
contains
(
NoSuchMethodFailureAnalyzerTests
.
class
.
getName
()
+
".createFailure("
)
...
...
spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/README.adoc
View file @
8ff0a9c5
...
...
@@ -31,7 +31,7 @@ Next, add your user to the `docker` group. For example:
$ sudo usermod -a -G docker awilkinson
----
You may need to log out and back in again for this change to take
a
ffect and for your
You may need to log out and back in again for this change to take
e
ffect and for your
user to be able to connect to the daemon.
...
...
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