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
758ddcd4
Commit
758ddcd4
authored
Apr 12, 2017
by
Phillip Webb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
parent
b2f0ebfc
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
205 additions
and
184 deletions
+205
-184
SolrHealthIndicator.java
...ingframework/boot/actuate/health/SolrHealthIndicator.java
+4
-7
WebRequestTraceFilter.java
...ngframework/boot/actuate/trace/WebRequestTraceFilter.java
+4
-6
SolrHealthIndicatorTests.java
...amework/boot/actuate/health/SolrHealthIndicatorTests.java
+3
-3
FreeMarkerTemplateAvailabilityProvider.java
...re/freemarker/FreeMarkerTemplateAvailabilityProvider.java
+15
-43
GroovyTemplateAvailabilityProvider.java
...e/groovy/template/GroovyTemplateAvailabilityProvider.java
+16
-43
AbstractTemplateAvailabilityProvider.java
...figure/template/AbstractTemplateAvailabilityProvider.java
+110
-0
VelocityTemplateAvailabilityProvider.java
...figure/velocity/VelocityTemplateAvailabilityProvider.java
+14
-44
ServerPropertiesTests.java
...amework/boot/autoconfigure/web/ServerPropertiesTests.java
+5
-4
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+32
-32
SampleActuatorApplicationTests.java
.../java/sample/actuator/SampleActuatorApplicationTests.java
+2
-2
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/health/SolrHealthIndicator.java
View file @
758ddcd4
...
...
@@ -41,13 +41,10 @@ public class SolrHealthIndicator extends AbstractHealthIndicator {
CoreAdminRequest
request
=
new
CoreAdminRequest
();
request
.
setAction
(
CoreAdminParams
.
CoreAdminAction
.
STATUS
);
CoreAdminResponse
response
=
request
.
process
(
this
.
solrClient
);
int
status
=
response
.
getStatus
();
if
(
status
==
0
)
{
builder
.
up
().
withDetail
(
"solrStatus"
,
"OK"
);
}
else
{
builder
.
down
().
withDetail
(
"solrStatus"
,
status
);
}
int
statusCode
=
response
.
getStatus
();
Status
status
=
(
statusCode
==
0
?
Status
.
UP
:
Status
.
DOWN
);
builder
.
status
(
status
).
withDetail
(
"solrStatus"
,
(
statusCode
==
0
?
"OK"
:
statusCode
));
}
}
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/WebRequestTraceFilter.java
View file @
758ddcd4
/*
* Copyright 2012-201
6
the original author or authors.
* Copyright 2012-201
7
the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
@@ -132,7 +132,7 @@ public class WebRequestTraceFilter extends OncePerRequestFilter implements Order
add
(
trace
,
Include
.
USER_PRINCIPAL
,
"userPrincipal"
,
(
userPrincipal
==
null
?
null
:
userPrincipal
.
getName
()));
if
(
isIncluded
(
Include
.
PARAMETERS
))
{
trace
.
put
(
"parameters"
,
getParameterMap
(
request
));
trace
.
put
(
"parameters"
,
getParameterMap
Copy
(
request
));
}
add
(
trace
,
Include
.
QUERY_STRING
,
"query"
,
request
.
getQueryString
());
add
(
trace
,
Include
.
AUTH_TYPE
,
"authType"
,
request
.
getAuthType
());
...
...
@@ -170,10 +170,8 @@ public class WebRequestTraceFilter extends OncePerRequestFilter implements Order
return
headers
;
}
private
Map
<
String
,
String
[]>
getParameterMap
(
HttpServletRequest
request
)
{
Map
<
String
,
String
[]>
map
=
new
LinkedHashMap
<
String
,
String
[]>();
map
.
putAll
(
request
.
getParameterMap
());
return
map
;
private
Map
<
String
,
String
[]>
getParameterMapCopy
(
HttpServletRequest
request
)
{
return
new
LinkedHashMap
<
String
,
String
[]>(
request
.
getParameterMap
());
}
/**
...
...
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/health/SolrHealthIndicatorTests.java
View file @
758ddcd4
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/freemarker/FreeMarkerTemplateAvailabilityProvider.java
View file @
758ddcd4
...
...
@@ -20,13 +20,8 @@ import java.util.ArrayList;
import
java.util.Arrays
;
import
java.util.List
;
import
org.springframework.boot.autoconfigure.template.AbstractTemplateAvailabilityProvider
;
import
org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider
;
import
org.springframework.boot.bind.PropertySourcesPropertyValues
;
import
org.springframework.boot.bind.RelaxedDataBinder
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
org.springframework.core.io.ResourceLoader
;
import
org.springframework.util.ClassUtils
;
/**
* {@link TemplateAvailabilityProvider} that provides availability information for
...
...
@@ -36,35 +31,28 @@ import org.springframework.util.ClassUtils;
* @since 1.1.0
*/
public
class
FreeMarkerTemplateAvailabilityProvider
implements
TemplateAvailabilityProvider
{
extends
Abstract
TemplateAvailabilityProvider
{
@Override
public
boolean
isTemplateAvailable
(
String
view
,
Environment
environment
,
ClassLoader
classLoader
,
ResourceLoader
resourceLoader
)
{
if
(
ClassUtils
.
isPresent
(
"freemarker.template.Configuration"
,
classLoader
))
{
FreeMarkerTemplateAvailabilityProperties
properties
=
new
FreeMarkerTemplateAvailabilityProperties
();
RelaxedDataBinder
binder
=
new
RelaxedDataBinder
(
properties
,
"spring.freemarker"
);
binder
.
bind
(
new
PropertySourcesPropertyValues
(
((
ConfigurableEnvironment
)
environment
).
getPropertySources
()));
for
(
String
loaderPath
:
properties
.
getTemplateLoaderPath
())
{
if
(
resourceLoader
.
getResource
(
loaderPath
+
properties
.
getPrefix
()
+
view
+
properties
.
getSuffix
()).
exists
())
{
return
true
;
}
}
}
return
false
;
public
FreeMarkerTemplateAvailabilityProvider
()
{
super
(
"freemarker.template.Configuration"
,
FreeMarkerTemplateAvailabilityProperties
.
class
,
"spring.freemarker"
);
}
static
final
class
FreeMarkerTemplateAvailabilityProperties
{
static
final
class
FreeMarkerTemplateAvailabilityProperties
extends
TemplateAvailabilityProperties
{
private
List
<
String
>
templateLoaderPath
=
new
ArrayList
<
String
>(
Arrays
.
asList
(
FreeMarkerProperties
.
DEFAULT_TEMPLATE_LOADER_PATH
));
private
String
prefix
=
FreeMarkerProperties
.
DEFAULT_PREFIX
;
FreeMarkerTemplateAvailabilityProperties
()
{
super
(
FreeMarkerProperties
.
DEFAULT_PREFIX
,
FreeMarkerProperties
.
DEFAULT_SUFFIX
);
}
private
String
suffix
=
FreeMarkerProperties
.
DEFAULT_SUFFIX
;
@Override
protected
List
<
String
>
getLoaderPath
()
{
return
this
.
templateLoaderPath
;
}
public
List
<
String
>
getTemplateLoaderPath
()
{
return
this
.
templateLoaderPath
;
...
...
@@ -74,22 +62,6 @@ public class FreeMarkerTemplateAvailabilityProvider
this
.
templateLoaderPath
=
templateLoaderPath
;
}
public
String
getPrefix
()
{
return
this
.
prefix
;
}
public
void
setPrefix
(
String
prefix
)
{
this
.
prefix
=
prefix
;
}
public
String
getSuffix
()
{
return
this
.
suffix
;
}
public
void
setSuffix
(
String
suffix
)
{
this
.
suffix
=
suffix
;
}
}
}
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateAvailabilityProvider.java
View file @
758ddcd4
...
...
@@ -20,13 +20,8 @@ import java.util.ArrayList;
import
java.util.Arrays
;
import
java.util.List
;
import
org.springframework.boot.autoconfigure.template.AbstractTemplateAvailabilityProvider
;
import
org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider
;
import
org.springframework.boot.bind.PropertySourcesPropertyValues
;
import
org.springframework.boot.bind.RelaxedDataBinder
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
org.springframework.core.io.ResourceLoader
;
import
org.springframework.util.ClassUtils
;
/**
* {@link TemplateAvailabilityProvider} that provides availability information for Groovy
...
...
@@ -35,35 +30,29 @@ import org.springframework.util.ClassUtils;
* @author Dave Syer
* @since 1.1.0
*/
public
class
GroovyTemplateAvailabilityProvider
implements
TemplateAvailabilityProvider
{
public
class
GroovyTemplateAvailabilityProvider
extends
AbstractTemplateAvailabilityProvider
{
@Override
public
boolean
isTemplateAvailable
(
String
view
,
Environment
environment
,
ClassLoader
classLoader
,
ResourceLoader
resourceLoader
)
{
if
(
ClassUtils
.
isPresent
(
"groovy.text.TemplateEngine"
,
classLoader
))
{
GroovyTemplateAvailabilityProperties
properties
=
new
GroovyTemplateAvailabilityProperties
();
RelaxedDataBinder
binder
=
new
RelaxedDataBinder
(
properties
,
public
GroovyTemplateAvailabilityProvider
()
{
super
(
"groovy.text.TemplateEngine"
,
GroovyTemplateAvailabilityProperties
.
class
,
"spring.groovy.template"
);
binder
.
bind
(
new
PropertySourcesPropertyValues
(
((
ConfigurableEnvironment
)
environment
).
getPropertySources
()));
for
(
String
loaderPath
:
properties
.
getResourceLoaderPath
())
{
if
(
resourceLoader
.
getResource
(
loaderPath
+
properties
.
getPrefix
()
+
view
+
properties
.
getSuffix
()).
exists
())
{
return
true
;
}
}
}
return
false
;
}
static
final
class
GroovyTemplateAvailabilityProperties
{
static
final
class
GroovyTemplateAvailabilityProperties
extends
TemplateAvailabilityProperties
{
private
List
<
String
>
resourceLoaderPath
=
new
ArrayList
<
String
>(
Arrays
.
asList
(
GroovyTemplateProperties
.
DEFAULT_RESOURCE_LOADER_PATH
));
private
String
prefix
=
GroovyTemplateProperties
.
DEFAULT_PREFIX
;
GroovyTemplateAvailabilityProperties
()
{
super
(
GroovyTemplateProperties
.
DEFAULT_PREFIX
,
GroovyTemplateProperties
.
DEFAULT_SUFFIX
);
}
private
String
suffix
=
GroovyTemplateProperties
.
DEFAULT_SUFFIX
;
@Override
protected
List
<
String
>
getLoaderPath
()
{
return
this
.
resourceLoaderPath
;
}
public
List
<
String
>
getResourceLoaderPath
()
{
return
this
.
resourceLoaderPath
;
...
...
@@ -73,22 +62,6 @@ public class GroovyTemplateAvailabilityProvider implements TemplateAvailabilityP
this
.
resourceLoaderPath
=
resourceLoaderPath
;
}
public
String
getPrefix
()
{
return
this
.
prefix
;
}
public
void
setPrefix
(
String
prefix
)
{
this
.
prefix
=
prefix
;
}
public
String
getSuffix
()
{
return
this
.
suffix
;
}
public
void
setSuffix
(
String
suffix
)
{
this
.
suffix
=
suffix
;
}
}
}
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/template/AbstractTemplateAvailabilityProvider.java
0 → 100644
View file @
758ddcd4
/*
* Copyright 2012-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
autoconfigure
.
template
;
import
java.util.List
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.boot.bind.PropertySourcesPropertyValues
;
import
org.springframework.boot.bind.RelaxedDataBinder
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
org.springframework.core.io.ResourceLoader
;
import
org.springframework.util.ClassUtils
;
/**
* Abstract base class for {@link TemplateAvailabilityProvider} implementations.
*
* @author Andy Wilkinson
* @author Phillip Webb
* @since 1.4.6
*/
public
abstract
class
AbstractTemplateAvailabilityProvider
implements
TemplateAvailabilityProvider
{
private
final
String
className
;
private
final
Class
<?
extends
TemplateAvailabilityProperties
>
propertiesClass
;
private
final
String
propertyPrefix
;
public
AbstractTemplateAvailabilityProvider
(
String
className
,
Class
<?
extends
TemplateAvailabilityProperties
>
propertiesClass
,
String
propertyPrefix
)
{
this
.
className
=
className
;
this
.
propertiesClass
=
propertiesClass
;
this
.
propertyPrefix
=
propertyPrefix
;
}
@Override
public
boolean
isTemplateAvailable
(
String
view
,
Environment
environment
,
ClassLoader
classLoader
,
ResourceLoader
resourceLoader
)
{
if
(
ClassUtils
.
isPresent
(
this
.
className
,
classLoader
))
{
TemplateAvailabilityProperties
properties
=
BeanUtils
.
instantiateClass
(
this
.
propertiesClass
);
RelaxedDataBinder
binder
=
new
RelaxedDataBinder
(
properties
,
this
.
propertyPrefix
);
binder
.
bind
(
new
PropertySourcesPropertyValues
(
((
ConfigurableEnvironment
)
environment
).
getPropertySources
()));
return
isTemplateAvailable
(
view
,
resourceLoader
,
properties
);
}
return
false
;
}
private
boolean
isTemplateAvailable
(
String
view
,
ResourceLoader
resourceLoader
,
TemplateAvailabilityProperties
properties
)
{
String
location
=
properties
.
getPrefix
()
+
view
+
properties
.
getSuffix
();
for
(
String
path
:
properties
.
getLoaderPath
())
{
if
(
resourceLoader
.
getResource
(
path
+
location
).
exists
())
{
return
true
;
}
}
return
false
;
}
protected
static
abstract
class
TemplateAvailabilityProperties
{
private
String
prefix
;
private
String
suffix
;
protected
TemplateAvailabilityProperties
(
String
prefix
,
String
suffix
)
{
this
.
prefix
=
prefix
;
this
.
suffix
=
suffix
;
}
protected
abstract
List
<
String
>
getLoaderPath
();
public
String
getPrefix
()
{
return
this
.
prefix
;
}
public
void
setPrefix
(
String
prefix
)
{
this
.
prefix
=
prefix
;
}
public
String
getSuffix
()
{
return
this
.
suffix
;
}
public
void
setSuffix
(
String
suffix
)
{
this
.
suffix
=
suffix
;
}
}
}
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/velocity/VelocityTemplateAvailabilityProvider.java
View file @
758ddcd4
...
...
@@ -20,13 +20,8 @@ import java.util.ArrayList;
import
java.util.Arrays
;
import
java.util.List
;
import
org.springframework.boot.autoconfigure.template.AbstractTemplateAvailabilityProvider
;
import
org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider
;
import
org.springframework.boot.bind.PropertySourcesPropertyValues
;
import
org.springframework.boot.bind.RelaxedDataBinder
;
import
org.springframework.core.env.ConfigurableEnvironment
;
import
org.springframework.core.env.Environment
;
import
org.springframework.core.io.ResourceLoader
;
import
org.springframework.util.ClassUtils
;
/**
* {@link TemplateAvailabilityProvider} that provides availability information for
...
...
@@ -39,36 +34,27 @@ import org.springframework.util.ClassUtils;
*/
@Deprecated
public
class
VelocityTemplateAvailabilityProvider
implements
TemplateAvailabilityProvider
{
extends
Abstract
TemplateAvailabilityProvider
{
@Override
public
boolean
isTemplateAvailable
(
String
view
,
Environment
environment
,
ClassLoader
classLoader
,
ResourceLoader
resourceLoader
)
{
if
(
ClassUtils
.
isPresent
(
"org.apache.velocity.app.VelocityEngine"
,
classLoader
))
{
VelocityTemplateAvailabilityProperties
properties
=
new
VelocityTemplateAvailabilityProperties
();
RelaxedDataBinder
binder
=
new
RelaxedDataBinder
(
properties
,
"spring.velocity"
);
binder
.
bind
(
new
PropertySourcesPropertyValues
(
((
ConfigurableEnvironment
)
environment
).
getPropertySources
()));
for
(
String
path
:
properties
.
getResourceLoaderPath
())
{
if
(
resourceLoader
.
getResource
(
path
+
properties
.
getPrefix
()
+
view
+
properties
.
getSuffix
())
.
exists
())
{
return
true
;
}
}
}
return
false
;
public
VelocityTemplateAvailabilityProvider
()
{
super
(
"org.apache.velocity.app.VelocityEngine"
,
VelocityTemplateAvailabilityProperties
.
class
,
"spring.velocity"
);
}
static
class
VelocityTemplateAvailabilityProperties
{
static
class
VelocityTemplateAvailabilityProperties
extends
TemplateAvailabilityProperties
{
private
List
<
String
>
resourceLoaderPath
=
new
ArrayList
<
String
>(
Arrays
.
asList
(
VelocityProperties
.
DEFAULT_RESOURCE_LOADER_PATH
));
private
String
prefix
=
VelocityProperties
.
DEFAULT_PREFIX
;
VelocityTemplateAvailabilityProperties
()
{
super
(
VelocityProperties
.
DEFAULT_PREFIX
,
VelocityProperties
.
DEFAULT_SUFFIX
);
}
private
String
suffix
=
VelocityProperties
.
DEFAULT_SUFFIX
;
@Override
protected
List
<
String
>
getLoaderPath
()
{
return
this
.
resourceLoaderPath
;
}
public
List
<
String
>
getResourceLoaderPath
()
{
return
this
.
resourceLoaderPath
;
...
...
@@ -78,22 +64,6 @@ public class VelocityTemplateAvailabilityProvider
this
.
resourceLoaderPath
=
resourceLoaderPath
;
}
public
String
getPrefix
()
{
return
this
.
prefix
;
}
public
void
setPrefix
(
String
prefix
)
{
this
.
prefix
=
prefix
;
}
public
String
getSuffix
()
{
return
this
.
suffix
;
}
public
void
setSuffix
(
String
suffix
)
{
this
.
suffix
=
suffix
;
}
}
}
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/ServerPropertiesTests.java
View file @
758ddcd4
...
...
@@ -450,10 +450,11 @@ public class ServerPropertiesTests {
Map
<
String
,
String
>
map
=
new
HashMap
<
String
,
String
>();
map
.
put
(
"server.max-http-post-size"
,
"-1"
);
bindProperties
(
map
);
TomcatEmbeddedServletContainerFactory
container
=
new
TomcatEmbeddedServletContainerFactory
(
0
);
TomcatEmbeddedServletContainerFactory
container
=
new
TomcatEmbeddedServletContainerFactory
(
0
);
this
.
properties
.
customize
(
container
);
TomcatEmbeddedServletContainer
embeddedContainer
=
(
TomcatEmbeddedServletContainer
)
container
.
getEmbeddedServletContainer
();
TomcatEmbeddedServletContainer
embeddedContainer
=
(
TomcatEmbeddedServletContainer
)
container
.
getEmbeddedServletContainer
();
embeddedContainer
.
start
();
try
{
assertThat
(
embeddedContainer
.
getTomcat
().
getConnector
().
getMaxPostSize
())
...
...
spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
758ddcd4
...
...
@@ -698,39 +698,39 @@ Sample summarized HTTP response (default for anonymous request):
[source,indent=0]
----
$ curl -i localhost:8080/health
HTTP/1.1 200
X-Application-Context: application
Content-Type: application/vnd.spring-boot.actuator.v1+json;charset=UTF-8
Content-Length: 15
$ curl -i localhost:8080/health
HTTP/1.1 200
X-Application-Context: application
Content-Type: application/vnd.spring-boot.actuator.v1+json;charset=UTF-8
Content-Length: 15
{"status":"UP"}
{"status":"UP"}
----
Sample summarized HTTP response for status "DOWN" (notice the 503 status code):
[source,indent=0]
----
$ curl -i localhost:8080/health
HTTP/1.1 503
X-Application-Context: application
Content-Type: application/vnd.spring-boot.actuator.v1+json;charset=UTF-8
Content-Length: 17
$ curl -i localhost:8080/health
HTTP/1.1 503
X-Application-Context: application
Content-Type: application/vnd.spring-boot.actuator.v1+json;charset=UTF-8
Content-Length: 17
{"status":"DOWN"}
{"status":"DOWN"}
----
Sample detailed HTTP response:
[source,indent=0]
----
$ curl -i localhost:8080/health
HTTP/1.1 200 OK
X-Application-Context: application
Content-Type: application/vnd.spring-boot.actuator.v1+json;charset=UTF-8
Content-Length: 221
$ curl -i localhost:8080/health
HTTP/1.1 200 OK
X-Application-Context: application
Content-Type: application/vnd.spring-boot.actuator.v1+json;charset=UTF-8
Content-Length: 221
{
{
"status" : "UP",
"diskSpace" : {
"status" : "UP",
...
...
@@ -743,7 +743,7 @@ Content-Length: 221
"database" : "H2",
"hello" : 1
}
}
}
----
The above-described restrictions can be enhanced, thereby allowing only authenticated
...
...
spring-boot-samples/spring-boot-sample-actuator/src/test/java/sample/actuator/SampleActuatorApplicationTests.java
View file @
758ddcd4
/*
* Copyright 2012-201
6
the original author or authors.
* Copyright 2012-201
7
the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
...
...
@@ -198,7 +198,7 @@ public class SampleActuatorApplicationTests {
List
<
Map
<
String
,
Object
>>
list
=
entity
.
getBody
();
Map
<
String
,
Object
>
trace
=
list
.
get
(
0
);
@SuppressWarnings
(
"unchecked"
)
Map
<
String
,
Object
>
map
=
(
Map
<
String
,
Object
>)
((
Map
<
String
,
Object
>)
trace
Map
<
String
,
Object
>
map
=
(
Map
<
String
,
Object
>)
((
Map
<
String
,
Object
>)
trace
.
get
(
"info"
)).
get
(
"parameters"
);
assertThat
(
map
.
get
(
"param1"
)).
isNotNull
();
}
...
...
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