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
02965e97
Commit
02965e97
authored
Jan 08, 2020
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix javadoc warnings
Fixes gh-19572
parent
6d8f07d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
AutoTimer.java
...a/org/springframework/boot/actuate/metrics/AutoTimer.java
+3
-3
LazyInitializationExcludeFilter.java
...springframework/boot/LazyInitializationExcludeFilter.java
+4
-5
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/AutoTimer.java
View file @
02965e97
/*
/*
* Copyright 2012-20
19
the original author or authors.
* Copyright 2012-20
20
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -68,7 +68,7 @@ public interface AutoTimer {
...
@@ -68,7 +68,7 @@ public interface AutoTimer {
/**
/**
* Factory method to create a new {@link Builder Timer.Builder} with auto-timer
* Factory method to create a new {@link Builder Timer.Builder} with auto-timer
* settings {@link #apply(Builder) applied}.
* settings {@link #apply(
Timer.
Builder) applied}.
* @param name the name of the timer
* @param name the name of the timer
* @return a new builder instance with auto-settings applied
* @return a new builder instance with auto-settings applied
*/
*/
...
@@ -78,7 +78,7 @@ public interface AutoTimer {
...
@@ -78,7 +78,7 @@ public interface AutoTimer {
/**
/**
* Factory method to create a new {@link Builder Timer.Builder} with auto-timer
* Factory method to create a new {@link Builder Timer.Builder} with auto-timer
* settings {@link #apply(Builder) applied}.
* settings {@link #apply(
Timer.
Builder) applied}.
* @param supplier the builder supplier
* @param supplier the builder supplier
* @return a new builder instance with auto-settings applied
* @return a new builder instance with auto-settings applied
*/
*/
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/LazyInitializationExcludeFilter.java
View file @
02965e97
/*
/*
* Copyright 2012-20
19
the original author or authors.
* Copyright 2012-20
20
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
@@ -29,13 +29,12 @@ import org.springframework.beans.factory.support.AbstractBeanDefinition;
...
@@ -29,13 +29,12 @@ import org.springframework.beans.factory.support.AbstractBeanDefinition;
* beans). Adding an instance of this filter to the application context can be used for
* beans). Adding an instance of this filter to the application context can be used for
* these edge cases.
* these edge cases.
* <p>
* <p>
* A typical example would be something like this:
* A typical example would be something like this: <pre>
* <p>
* <pre><code>
* @Bean
* @Bean
* public static LazyInitializationExcludeFilter integrationLazyInitializationExcludeFilter() {
* public static LazyInitializationExcludeFilter integrationLazyInitializationExcludeFilter() {
* return LazyInitializationExcludeFilter.forBeanTypes(IntegrationFlow.class);
* return LazyInitializationExcludeFilter.forBeanTypes(IntegrationFlow.class);
* }</code></pre>
* }
* </pre>
* <p>
* <p>
* NOTE: Beans of this type will be instantiated very early in the spring application
* NOTE: Beans of this type will be instantiated very early in the spring application
* lifecycle so they should generally be declared static and not have any dependencies.
* lifecycle so they should generally be declared static and not have any dependencies.
...
...
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