本文整理匯總了Java中org.springframework.data.web.JsonPath類的典型用法代碼示例。如果您正苦於以下問題:Java JsonPath類的具體用法?Java JsonPath怎麽用?Java JsonPath使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
JsonPath類屬於org.springframework.data.web包,在下文中一共展示了JsonPath類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getFirstname
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@XBRead("//firstname")
@JsonPath("$..firstname")
String getFirstname();
示例2: getLastname
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@XBRead("//lastname")
@JsonPath("$..lastname")
String getLastname();
示例3: getProductId
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.product.id")
UUID getProductId();
示例4: getName
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.product.name")
String getName();
示例5: getOrderId
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.order.id")
UUID getOrderId();
示例6: getLineItems
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.order.lineItems")
Collection<LineItem> getLineItems();
示例7: getProductNumber
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.product.id")
UUID getProductNumber();
示例8: getDescription
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.product.name")
String getDescription();
示例9: getPrice
import org.springframework.data.web.JsonPath; //導入依賴的package包/類
@JsonPath("$.product.price")
BigDecimal getPrice();