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

Ensure Spring LogFactory contains all public methods from Apache LogFactory #30668

Merged
merged 3 commits into from Jun 21, 2023

Conversation

maartenc
Copy link
Contributor

Hi,

we encountered a similar issue as #21835, but a bit different use-case.
The fix for #21835 was not sufficient for this situation.

Our Spring application uses other libraries that have constructs like the snippet below.
These libraries were compiled against the original Apache Commons Logging API.

public class Foo {

  static {
    LogFactory.getFactory().setAttribute("org.apache.commons.logging.Log", "org.apache.commons.logging.impl.Jdk14Logger");
  }

}

If we use this class in our Spring application (which includes spring-jcl), we encounter the following error when the Foo class gets loaded:

java.lang.NoSuchMethodError: 'void org.apache.commons.logging.LogFactory.setAttribute(java.lang.String, java.lang.Object)'
       at Foo.<clinit>

The reason for this error is that the Spring-version of the LogFactory class does not specify this setAttribute(...) method, which results in this NoSuchMethodError when some code tries to call it.

I've created a pull request which I believe will solve the issue.
This PR adds all missing public methods to the Spring LogFactory class. To maximize code re-use, I've extracted the existing 'attribute-logic' from LogFactoryService into a new class (LogFactoryImpl).

Maarten

…he LogFactory to avoid NoSuchMethodErrors when such a method is called.
@pivotal-cla
Copy link

@maartenc Please sign the Contributor License Agreement!

Click here to manually synchronize the status of this Pull Request.

See the FAQ for frequently asked questions.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Jun 14, 2023
@pivotal-cla
Copy link

@maartenc Thank you for signing the Contributor License Agreement!

@sbrannen sbrannen requested a review from jhoeller June 14, 2023 13:09
@sbrannen sbrannen added in: core Issues in core modules (aop, beans, core, context, expression) type: enhancement A general enhancement labels Jun 14, 2023
@sbrannen sbrannen changed the title java.lang.NoSuchMethodError: org.apache.commons.logging.LogFactory.setAttribute(..) NoSuchMethodError: org.apache.commons.logging.LogFactory.setAttribute(..) Jun 14, 2023
@sbrannen sbrannen changed the title NoSuchMethodError: org.apache.commons.logging.LogFactory.setAttribute(..) Ensure Spring LogFactory contains all public methods from Apache LogFactory Jun 14, 2023
@jhoeller
Copy link
Contributor

@maartenc this pull request looks good for a start, thanks for raising it! I didn't expect those attribute methods to be called for non-service usage but we can certainly declare them on the regular LogFactory class nevertheless, ideally in deprecated form.

However, my preference would be for a minimal no-op implementation on the core LogFactory class itself, just supporting actual attribute storage in LogFactoryService, never keeping an instance and its attributes map unnecessarily. So to declare those LogFactory methods as non-abstract but mark them as deprecated and stub them out with no-ops, ignoring set/remove calls and never returning anything from the getters. No need for a LogFactoryImpl class then, not even for a static LogFactory instance in a field, and LogFactoryService would keep the map-based implementation that it has already.

Would this work for your purposes? If you'd like to update the PR accordingly, please rebase it onto the 6.0.x branch. I'd be happy to roll it into 6.0.11 and backport it to 5.3.29 then. Otherwise I can also implement the approach above on my side for you to test.

@jhoeller jhoeller self-assigned this Jun 19, 2023
@jhoeller jhoeller removed the status: waiting-for-triage An issue we've not yet triaged or decided on label Jun 19, 2023
@jhoeller jhoeller added this to the 6.0.11 milestone Jun 19, 2023
@maartenc maartenc changed the base branch from main to 6.0.x June 20, 2023 10:55
@maartenc maartenc changed the base branch from 6.0.x to main June 20, 2023 10:56
@maartenc
Copy link
Contributor Author

Hi @jhoeller , thanks for the review!
I've update the pull request based on your remarks.
Could you take another look?

Regarding the rebase to the 6.0.x branch: could you tell me how I can do this?
I'm not a regular git user, I've tried a few things, but I couldn't get it done.

@jhoeller
Copy link
Contributor

No worries about the target branch, I can also merge this into main for a start and then apply it to 6.0.x and 5.3.x in a custom fashion. I might add a few static methods such as releaseAll() that Commons Logging seems to have as well, double-checking that the public signature is 100% equivalent (beyond the original limited goals of spring-jcl) even if our methods are no-op.

(In general, changing the target branch can e.g. be done on GitHub through the "Edit" button and then a dropdown box for the branch name, but preferably rebasing locally first and then force-pushing the rebased commit to the PR. Since we are going to squash your three commits into one anyway, it won't make much difference here, so no need to spend a lot of time with it.)

@jhoeller jhoeller added the for: backport-to-5.3.x Marks an issue as a candidate for backport to 5.3.x label Jun 20, 2023
@jhoeller jhoeller merged commit 2445766 into spring-projects:main Jun 21, 2023
3 of 4 checks passed
@maartenc
Copy link
Contributor Author

Thanks for your follow-up @jhoeller !

@maartenc maartenc deleted the LogFactory_setAttribute branch June 21, 2023 07:42
@jhoeller jhoeller added status: backported An issue that has been backported to maintenance branches and removed for: backport-to-5.3.x Marks an issue as a candidate for backport to 5.3.x labels Jun 21, 2023
jhoeller added a commit that referenced this pull request Jun 21, 2023
mdeinum pushed a commit to mdeinum/spring-framework that referenced this pull request Jun 29, 2023
mdeinum pushed a commit to mdeinum/spring-framework that referenced this pull request Jun 29, 2023
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: enhancement A general enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants