@QueryParam

From Documentation
Revision as of 01:50, 9 February 2012 by Hawk (talk | contribs)

Syntax

@QueryParam("keyString")

Description

Target: A method's parameter (initial method and command method)

Purpose: Tell binder to retrieve this parameter with specified key from HTTP request parameters.

The annotation is applied to initial method's (or command method's) parameter. It declare the applied parameter should come from HTTP request parameters with specified key.

Example

Http request parameters is appended at URL like: http://localhost:8080/zkbinddemo/httpparam.zul?param1=abc

public class HttpParamVM {

	String queryParam;
	
	@Init
	public void init(@QueryParam("param1") String parm1){
		queryParam = parm1;

	}
  • In this example, binder will pass "abc" to parm1.



Version History

Last Update : 2012/02/09


Version Date Content
6.0.0 February 2012 The MVVM was introduced.




Last Update : 2012/02/09

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.