Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ClassPathResource.createRelative is using wrong ClassPathResource constructor for the returned resource [SPR-16146] #20694

Closed
spring-projects-issues opened this issue Nov 1, 2017 · 1 comment
Assignees
Labels
in: core Issues in core modules (aop, beans, core, context, expression) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Nov 1, 2017

Constantino Cronemberger opened SPR-16146 and commented

new ClassPathResource("/test.html") removes the leading slash, but when the method createRelative is called it does not remove the leading slash in the returned resource as in this example:

System.out.println(((ClassPathResource)new ClassPathResource("").createRelative("/test.html")).getPath());

The fix is very simple.

There are two sets of constructors: the ones for when clazz is not specified and the ones for when it is specified.

The createRelative method should choose the right one to use based on the current value of the clazz attribute.


Affects: 4.3.12, 5.0.1

Issue Links:

Referenced from: commits 573ff2c, d00e4f1

Backported to: 4.3.13

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Good catch! ClassPathResource uses its specific constructors in createRelative now, and the multi-arg constructor variant is deprecated.

@spring-projects-issues spring-projects-issues added type: bug A general bug status: backported An issue that has been backported to maintenance branches in: core Issues in core modules (aop, beans, core, context, expression) labels Jan 11, 2019
@spring-projects-issues spring-projects-issues added this to the 5.0.2 milestone Jan 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: core Issues in core modules (aop, beans, core, context, expression) status: backported An issue that has been backported to maintenance branches type: bug A general bug
Projects
None yet
Development

No branches or pull requests

2 participants