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
7c7259be
Commit
7c7259be
authored
Jul 28, 2017
by
rostislav.dudka
Committed by
Andy Wilkinson
Jul 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make JarURLConnection return entry's last modified time
See gh-9893
parent
5c13b8bf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
JarURLConnection.java
...org/springframework/boot/loader/jar/JarURLConnection.java
+16
-0
JarURLConnectionTests.java
...pringframework/boot/loader/jar/JarURLConnectionTests.java
+9
-0
No files found.
spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/jar/JarURLConnection.java
View file @
7c7259be
...
...
@@ -36,6 +36,7 @@ import org.springframework.boot.loader.data.RandomAccessData.ResourceAccess;
*
* @author Phillip Webb
* @author Andy Wilkinson
* @author Rostyslav Dudka
*/
final
class
JarURLConnection
extends
java
.
net
.
JarURLConnection
{
...
...
@@ -234,6 +235,21 @@ final class JarURLConnection extends java.net.JarURLConnection {
return
this
.
permission
;
}
@Override
public
long
getLastModified
()
{
int
defaultTime
=
0
;
if
(
this
.
jarFile
==
null
||
this
.
jarEntryName
.
isEmpty
())
{
return
defaultTime
;
}
try
{
JarEntry
entry
=
getJarEntry
();
return
(
entry
==
null
?
defaultTime
:
entry
.
getTime
());
}
catch
(
IOException
ex
)
{
return
defaultTime
;
}
}
static
void
setUseFastExceptions
(
boolean
useFastExceptions
)
{
JarURLConnection
.
useFastExceptions
.
set
(
useFastExceptions
);
}
...
...
spring-boot-tools/spring-boot-loader/src/test/java/org/springframework/boot/loader/jar/JarURLConnectionTests.java
View file @
7c7259be
...
...
@@ -35,6 +35,7 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* @author Andy Wilkinson
* @author Phillip Webb
* @author Rostyslav Dudka
*/
public
class
JarURLConnectionTests
{
...
...
@@ -150,6 +151,14 @@ public class JarURLConnectionTests {
assertThat
(
url
.
openConnection
().
getContentLengthLong
()).
isEqualTo
(
1
);
}
@Test
public
void
getLastModifiedReturnsLastModifiedTimeOfJarEntry
()
throws
Exception
{
URL
url
=
new
URL
(
"jar:file:"
+
getAbsolutePath
()
+
"!/1.dat"
);
JarURLConnection
connection
=
JarURLConnection
.
get
(
url
,
this
.
jarFile
);
assertThat
(
connection
.
getLastModified
())
.
isEqualTo
(
connection
.
getJarEntry
().
getTime
());
}
private
String
getAbsolutePath
()
{
return
this
.
rootJarFile
.
getAbsolutePath
().
replace
(
'\\'
,
'/'
);
}
...
...
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