Skip to content

Incorrect SpEL syntax in reference documentation [SPR-16315] #20862

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

Closed
spring-projects-issues opened this issue Dec 19, 2017 · 3 comments
Closed
Assignees
Labels
status: backported An issue that has been backported to maintenance branches type: documentation A documentation task
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

Sviatoslav Hryb opened SPR-16315 and commented

Spring Framework Reference (Testing) https://docs.spring.io/spring/docs/5.0.2.RELEASE/spring-framework-reference/testing.html contains incorrect code fragment in section 3.5.6. Testing request and session scoped beans

The incorrect fragment is:

<beans>

    <bean id="userService"
            class="com.example.SimpleUserService"
            c:loginAction-ref="loginAction" />

    <bean id="loginAction" class="com.example.LoginAction"
            c:username="{request.getParameter('user')}"
            c:password="{request.getParameter('pswd')}"
            scope="request">
        <aop:scoped-proxy />
    </bean>

</beans>

The problem is that c:username="&#123;request.getParameter('user')&#125;" should have prefix #&#123; for correct SpEL syntax. The same is true for c:password="&#123;request.getParameter('pswd')&#125;"


Affects: 4.3.13, 5.0.2

Referenced from: commits 8aa94ae, 0d151b0

Backported to: 4.3.14

@spring-projects-issues
Copy link
Collaborator Author

Juergen Hoeller commented

Stéphane Nicoll, this seems to be an escaping problem... Any insight into asciidoc's behavior here?

Oddly enough, we were only escaping the '#' character in the first case before. Removing that escape sequence made the character disappear in three places now, also in the session.getAttribute('theme') example further below.

@spring-projects-issues
Copy link
Collaborator Author

Stéphane Nicoll commented

That block was using verbatim substitution but there was no need to do that. I've removed it and the code snippet is fine now. Also backported to 4.3.x.

@spring-projects-issues
Copy link
Collaborator Author

Sam Brannen commented

Oops!

I thought I fixed that in this commit, but obviously I did not.

Thanks, Stéphane Nicoll!

@spring-projects-issues spring-projects-issues added status: backported An issue that has been backported to maintenance branches type: documentation A documentation task labels Jan 11, 2019
@spring-projects-issues spring-projects-issues added this to the 5.0.3 milestone Jan 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: backported An issue that has been backported to maintenance branches type: documentation A documentation task
Projects
None yet
Development

No branches or pull requests

2 participants