¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.springblade.core.http.test; |
| | | |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | import org.springblade.core.http.CssQuery; |
| | | |
| | | /** |
| | | * çé¨å客 |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | public class VBlog { |
| | | |
| | | @CssQuery(value = "a", attr = "title") |
| | | private String title; |
| | | |
| | | @CssQuery(value = "a", attr = "href") |
| | | private String href; |
| | | |
| | | //1341é
/9è¯/4èµ |
| | | @CssQuery(value = "span", attr = "text", regex = "^\\d+") |
| | | private Integer read; |
| | | |
| | | @CssQuery(value = "span", attr = "text", regex = "(\\d*).*/(\\d*).*/(\\d*).*", regexGroup = 2) |
| | | private Integer ping; |
| | | |
| | | @CssQuery(value = "span", attr = "text", regex = "(\\d*).*/(\\d*).*/(\\d*).*", regexGroup = 3) |
| | | private Integer zhan; |
| | | |
| | | } |