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
fbf97447
Commit
fbf97447
authored
May 10, 2018
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.5.x' into 2.0.x
parents
4ec87956
c8b3cea2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
AbstractFilterRegistrationBean.java
...work/boot/web/servlet/AbstractFilterRegistrationBean.java
+4
-3
ServletRegistrationBean.java
...ngframework/boot/web/servlet/ServletRegistrationBean.java
+3
-2
No files found.
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/AbstractFilterRegistrationBean.java
View file @
fbf97447
...
@@ -154,8 +154,8 @@ public abstract class AbstractFilterRegistrationBean<T extends Filter>
...
@@ -154,8 +154,8 @@ public abstract class AbstractFilterRegistrationBean<T extends Filter>
}
}
/**
/**
* Return a mutable collection of URL patterns
that the filter will be registered
* Return a mutable collection of URL patterns
, as defined in the Servlet
* against.
*
specification, that the filter will be registered
against.
* @return the URL patterns
* @return the URL patterns
*/
*/
public
Collection
<
String
>
getUrlPatterns
()
{
public
Collection
<
String
>
getUrlPatterns
()
{
...
@@ -163,7 +163,8 @@ public abstract class AbstractFilterRegistrationBean<T extends Filter>
...
@@ -163,7 +163,8 @@ public abstract class AbstractFilterRegistrationBean<T extends Filter>
}
}
/**
/**
* Add URL patterns that the filter will be registered against.
* Add URL patterns, as defined in the Servlet specification, that the filter will be
* registered against.
* @param urlPatterns the URL patterns
* @param urlPatterns the URL patterns
*/
*/
public
void
addUrlPatterns
(
String
...
urlPatterns
)
{
public
void
addUrlPatterns
(
String
...
urlPatterns
)
{
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/ServletRegistrationBean.java
View file @
fbf97447
...
@@ -129,7 +129,8 @@ public class ServletRegistrationBean<T extends Servlet>
...
@@ -129,7 +129,8 @@ public class ServletRegistrationBean<T extends Servlet>
}
}
/**
/**
* Return a mutable collection of the URL mappings for the servlet.
* Return a mutable collection of the URL mappings, as defined in the Servlet
* specification, for the servlet.
* @return the urlMappings
* @return the urlMappings
*/
*/
public
Collection
<
String
>
getUrlMappings
()
{
public
Collection
<
String
>
getUrlMappings
()
{
...
@@ -137,7 +138,7 @@ public class ServletRegistrationBean<T extends Servlet>
...
@@ -137,7 +138,7 @@ public class ServletRegistrationBean<T extends Servlet>
}
}
/**
/**
* Add URL mappings for the servlet.
* Add URL mappings
, as defined in the Servlet specification,
for the servlet.
* @param urlMappings the mappings to add
* @param urlMappings the mappings to add
* @see #setUrlMappings(Collection)
* @see #setUrlMappings(Collection)
*/
*/
...
...
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