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

Expose model object in RequestContext with public getter [SPR-5686] #10356

Closed
spring-projects-issues opened this issue Apr 18, 2009 · 0 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: enhancement A general enhancement
Milestone

Comments

@spring-projects-issues
Copy link
Collaborator

Dave Syer opened SPR-5686 and commented

Expose model object in RequestContext. Background:

Trying to use Freemarker with Tiles, and I want to manipulate the model from an "enclosing" request and, while I can get hold of the RequestContext via the AbstractTemplateView.SPRING_MACRO_REQUEST_CONTEXT_ATTRIBUTE, but then I can only get the model by using Field.setAccessible(true), e.g.

String contextAttribute = AbstractTemplateView.SPRING_MACRO_REQUEST_CONTEXT_ATTRIBUTE;
RequestContext context = (RequestContext) request
		.getAttribute(contextAttribute);
if (context != null) {
	@SuppressWarnings("unchecked")
	Map<String, Object> model = (Map<String, Object>) MacroModelInterceptor
			.getField(context, "model");
	model.remove(contextAttribute);
	modelAndView.addAllObjects(model);
	request.removeAttribute(contextAttribute);
}

Affects: 2.5.6

Referenced from: commits c230c18

@spring-projects-issues spring-projects-issues added type: enhancement A general enhancement in: web Issues in web modules (web, webmvc, webflux, websocket) labels Jan 11, 2019
@spring-projects-issues spring-projects-issues added this to the 3.0 M3 milestone Jan 11, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

2 participants