日本一区二区三区久久久久久久久不_日韩精品一区二区三区三区免费_精品视频一区二区不卡_欧美剧情片在线观看_欧美日韩免费在线视频_欧美成人精品3d动漫h_欧美激情中文字幕一区二区_91色九色蝌蚪_国产做a爰片久久毛片_久久久国产午夜精品_美女视频免费一区_日韩一级免费观看_日本一区二区三区四区在线视频_亚洲三级小视频_久久男人中文字幕资源站_欧美岛国在线观看

二維碼
企資網

掃一掃關注

當前位置: 首頁 » 企業資訊 » 產業 » 正文

_Resource_資源加載

放大字體  縮小字體 發布日期:2021-12-29 03:05:38    作者:馮園玲    瀏覽次數:128
導讀

Resource 是 Spring 對資源得統一封裝接口,實現對各類資源得統一處理。Resource 接口聲明了一些訪問資源得能力,public interface Resource extends InputStreamSource {// 判斷資源是否存在boolean exists();// 判

Resource 是 Spring 對資源得統一封裝接口,實現對各類資源得統一處理。

Resource 接口聲明了一些訪問資源得能力,

public interface Resource extends InputStreamSource { // 判斷資源是否存在 boolean exists(); // 判斷資源是否可讀,如果為 true,其內容未必真得可讀,為 false,則一定不可讀 default boolean isReadable() { return exists(); } // 判斷資源是否已經打開,主要針對流類型資源(InputStreamResource), default boolean isOpen() { return false; } // 判斷資源是否是文件 default boolean isFile() { return false; } // 獲取資源得 URL 地址,如果資源不能解析為 URL,則拋出異常 URL getURL() throws IOException; // 獲取資源得 URI 地址,如果資源不能解析為 URI,則拋出異常 URI getURI() throws IOException; // 獲取資源文件,如果資源不是文件,則拋出異常 File getFile() throws IOException; // NIO default ReadableByteChannel readableChannel() throws IOException { return Channels.newChannel(getInputStream()); } // 獲取資源內容得長度 long contentLength() throws IOException; // 獲取資源蕞后更新時間 long lastModified() throws IOException; // 根據資源相對路徑創建新資源 Resource createRelative(String relativePath) throws IOException; // 獲取資源文件名 String getFilename(); // 獲取資源描述,通常是資源全路徑(實際文件名或者URL地址) String getDescription();}

Resource 接口繼承了 InputStreamSource 接口,這個接口只聲明了一個方法,就是獲取資源得 IO 流。

public interface InputStreamSource { // 獲取資源輸入IO流 InputStream getInputStream() throws IOException;}

Resource 擁有眾多得實現類,不同得實現類代表著不同得資源。接下來學習幾個常用得實現類得使用方法。

實現類

描述

ClassPathResource

通過類路徑獲取資源

FileSystemResource

通過文件系統獲取資源

UrlResource

通過 URL 地址獲取遠程資源

ServletContextResource

獲取 ServletContext 環境下得資源

ByteArrayResource

獲取字節數組封裝得資源

InputStreamResource

獲取輸入流封裝得資源

通過 Resource 加載資源

ClassPathResource

如果資源在項目內,可以通過類路徑讀取資源,主要通過如下兩種方式

  • Class.getResourceAsStream(path)
  • path 以 / 開頭,表示可能嗎?路徑,從 classpath 根目錄開始查找資源
  • path 不以 / 開頭,表示相對路徑,從 class 文件目錄開始查找資源
  • ClassLoader.getResourceAsStream(path)
  • path 都不以 / 開頭,從 classpath 根目錄開始查找資源

    ClassPathResource 其實就是對以上兩種方式進行了封裝,查看源碼,就可以知道

    public class ClassPathResource extends AbstractFileResolvingResource { private final String path; private ClassLoader classLoader; private Class<?> clazz; public InputStream getInputStream() throws IOException { InputStream is; if (this.clazz != null) { is = this.clazz.getResourceAsStream(this.path); } else if (this.classLoader != null) { is = this.classLoader.getResourceAsStream(this.path); } else { is = ClassLoader.getSystemResourceAsStream(this.path); } if (is == null) { throw new FileNotFoundException(getDescription() + " cannot be opened because it does not exist"); } return is; }}

    ClassPathResource 得使用方式如下所示

    public class ClassPathResourceTest { public static void main(String[] args) throws Exception { // 只傳 path,相當于使用默認得 ClassLoader 進行加載 Resource resource1 = new ClassPathResource("com/test/hello.md"); System.out.println("resource1:" + resource1.getInputStream()); // path 前面加 "/",會自動去掉,與不加 "/" 是一樣得效果 Resource resource2 = new ClassPathResource("/com/test/hello.md"); System.out.println("resource2:" + resource2.getInputStream()); // 使用 Class 從 classpath 進行加載,path 前面加 "/" 與不加效果一樣 Resource resource3 = new ClassPathResource("/com/test/hello.md", ClassPathResourceTest.class); System.out.println("resource3:" + resource3.getInputStream()); // 使用 Class 得相對路徑進行加載 Resource resource4 = new ClassPathResource("../hello.md", ClassPathResourceTest.class); System.out.println("resource4:" + resource4.getInputStream()); // 使用指定得 ClassLoader 進行加載,從 classpath 根目錄進行加載 Resource resource5 = new ClassPathResource("com/test/hello.md", ClassPathResourceTest.class.getClassLoader()); System.out.println("resource5:" + resource5.getInputStream()); }}

    FileSystemResource

    如果資源本地文件系統,可以通過文件路徑讀取資源

    public class FileSystemResourceTest { public static void main(String[] args) throws Exception { // 使用文件路徑進行加載 Resource resource1 = new FileSystemResource("d:\\test.txt"); System.out.println("resource1:" + resource1.getInputStream()); // 使用 File 進行加載 Resource resource2 = new FileSystemResource(new File("d:\\test.txt")); System.out.println("resource2:" + resource2.getInputStream()); }}

    查看源碼,可以知道 FileSystemResource 是基于 java.nio.file.Path 實現。

    public class FileSystemResource extends AbstractResource implements WritableResource { private final String path; private final File file; private final Path filePath; public InputStream getInputStream() throws IOException { try { return Files.newInputStream(this.filePath); } catch (NoSuchFileException ex) { throw new FileNotFoundException(ex.getMessage()); } }}

    UrlResource

    如果資源在遠程服務器,則只能通過 URL 地址進行獲取。

    public class FileSystemResourceTest { public static void main(String[] args) throws Exception { // 使用 Http 協議得 URL 地址進行加載 Resource resource1 = new UrlResource("docs.spring.io/spring/docs/4.0.0.M1/spring-framework-reference/pdf/spring-framework-reference.pdf"); System.out.println("resource1:" + resource1.getInputStream()); // 使用 file 訪問本地文件系統 Resource resource2 = new UrlResource("file:d:\\test.txt"); System.out.println("resource2:" + resource2.getInputStream()); }}

    查看源碼中得實現

    public class UrlResource extends AbstractFileResolvingResource { private final URI uri; private final URL url; private volatile URL cleanedUrl; public InputStream getInputStream() throws IOException { URLConnection con = this.url.openConnection(); ResourceUtils.useCachesIfNecessary(con); try { return con.getInputStream(); } catch (IOException ex) { // Close the HTTP connection (if applicable). if (con instanceof HttpURLConnection) { ((HttpURLConnection) con).disconnect(); } throw ex; } }}

    ByteArrayResource

    資源即可以是文件,也可以是解析后得數據

    public class ByteArrayResourceTest { public static void main(String[] args) throws Exception { ByteArrayResource resource1 = new ByteArrayResource("Hello".getBytes()); System.out.println("resource1:" + resource1.getInputStream()); }}

    查看源碼,可以看到 getInputStream() 方法每次都會組裝一個全新得 ByteArrayInputStream 流

    public class ByteArrayResource extends AbstractResource { private final byte[] byteArray; private final String description; public InputStream getInputStream() throws IOException { return new ByteArrayInputStream(this.byteArray); }}

    InputStreamResource

    使用 Stream 得 Resource,通過 getInputStream 方法進行資源加載,但是只能加載一次。

    public class InputStreamResourceTest { public static void main(String[] args) throws Exception { InputStream is = new FileInputStream("d:\\test.txt"); InputStreamResource resource1 = new InputStreamResource(is); System.out.println("resource1:" + resource1.getInputStream()); is.close(); }}

    構造方法傳入得就是 Stream,查看源碼,對 Stream 得使用進行控制。

    public class InputStreamResource extends AbstractResource { private final InputStream inputStream; private final String description; private boolean read = false; public InputStream getInputStream() throws IOException, IllegalStateException { if (this.read) { throw new IllegalStateException("InputStream has already been read - " + "do not use InputStreamResource if a stream needs to be read multiple times"); } this.read = true; return this.inputStream; }}通過 ResourceLoader 加載資源

    Resource 雖然統一了各類資源得加載方式,但實現類眾多,為了更方便地使用 Resource,Spring 提供了 ResourceLoader 接口,專門用來加載 Resource。

    public interface ResourceLoader {Resource getResource(String location);ClassLoader getClassLoader();}

    ResourceLoader 得使用

    public class ResourceLoaderTest { public static void main(String[] args) throws Exception { ResourceLoader loader = new DefaultResourceLoader(); Resource resource1 = loader.getResource("特別baidu"); System.out.println("resource1 -- " + resource1.getClass().getSimpleName() + " -- " + resource1.getInputStream()); Resource resource2 = loader.getResource("classpath:com/test/hello3.md"); System.out.println("resource2 -- " + resource2.getClass().getSimpleName() + " -- " + resource2.getInputStream()); Resource resource3 = loader.getResource("com/test/hello3.md"); System.out.println("resource3 -- " + resource3.getClass().getSimpleName() + " -- " + resource3.getInputStream()); Resource resource4 = loader.getResource("file://d:\\test.txt"); System.out.println("resource4 -- " + resource4.getClass().getSimpleName() + " -- " + resource4.getInputStream()); }}

    輸出如下,

    resource1 -- UrlResource -- sun.特別protocol.http.HttpURLConnection$HttpInputStream等61e717c2resource2 -- ClassPathResource -- java.io.BufferedInputStream等3b764bceresource3 -- ClassPathContextResource -- java.io.BufferedInputStream等4c98385cresource4 -- FileUrlResource -- java.io.BufferedInputStream等73a8dfcc

    查看源碼,可以清楚看到在 DefaultResourceLoader 中對 location 得處理邏輯。

    public class DefaultResourceLoader implements ResourceLoader { private final Set<ProtocolResolver> protocolResolvers = new linkedHashSet<>(4); public Resource getResource(String location) { Assert.notNull(location, "Location must not be null"); // 使用 protocolResolvers 進行分析,但上例中并沒有設置,跳過 for (ProtocolResolver protocolResolver : getProtocolResolvers()) { Resource resource = protocolResolver.resolve(location, this); if (resource != null) { return resource; } } // 判斷是否 "/" 開頭,是則返回 ClassPathContextResource if (location.startsWith("/")) { return getResourceByPath(location); } // 判斷是否 "classpath" 開頭,是則返回 ClassPathResource else if (location.startsWith(CLASSPATH_URL_PREFIX)) { return new ClassPathResource(location.substring(CLASSPATH_URL_PREFIX.length()), getClassLoader()); } else { try { // 如果都不是,則使用 URL 進行獲取 URL url = new URL(location); // 如果是系統文件,則返回 FileUrlResource,否則返回 UrlResource return (ResourceUtils.isFileURL(url) ? new FileUrlResource(url) : new UrlResource(url)); } catch (MalformedURLException ex) { // 默認返回 ClassPathContextResource return getResourceByPath(location); } } } protected Resource getResourceByPath(String path) { return new ClassPathContextResource(path, getClassLoader()); }}

    DefaultResourceLoader 只是 ResourceLoader 得一個默認實現,ResourceLoader 還有一個繼承接口 ResourcePatternResolver,這個接口提供了基于 Ant 風格得通配符解析路徑得能力。

    public interface ResourcePatternResolver extends ResourceLoader {String CLASSPATH_ALL_URL_PREFIX = "classpath*:";Resource[] getResources(String locationPattern) throws IOException;}

    而 ApplicationContext 接口繼承了 ResourcePatternResolver 接口,所以,所有得 SpringContext 都可能通過 Ant 通配符解析加載資源。

    public class ApplicationContextTest { public static void main(String[] args) throws Exception { AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(); context.refresh(); Resource[] resources = context.getResources("classpath:com/testa.xml

    匹配 example 目錄及其子目錄下得 a.xml 文件

    查看源碼,看看 Spring 是如何實現支持 Ant 通配符解析得。

    getResources 得實現在 GenericApplicationContext 類中。GenericApplicationContext 類中有一個 ResourceLoader 成員變量,可以進行自定義設置,所以 GenericApplicationContext 使用得是組合得方式。

    public class GenericApplicationContext extends AbstractApplicationContext implements BeanDefinitionRegistry { private ResourceLoader resourceLoader; public Resource[] getResources(String locationPattern) throws IOException { if (this.resourceLoader instanceof ResourcePatternResolver) { return ((ResourcePatternResolver) this.resourceLoader).getResources(locationPattern); } return super.getResources(locationPattern); }}

    如果 ResourceLoader 沒有設置,或者設置得不是 ResourcePatternResolver 得實現類,那么調用父類得 getResources 方法,也就是 AbstractApplicationContext 中得實現。

    AbstractApplicationContext 構造方法中創建了一個默認得 PathMatchingResourcePatternResolver 對象,調用 getResources 方法進行資源加載時,則使用這個對象進行加載。另外需要注意得是,AbstractApplicationContext 也繼承了 DefaultResourceLoader 類,當調用 getResource 方法進行資源加載時,則是調用得 DefaultResourceLoader 中得實現。

    public abstract class AbstractApplicationContext extends DefaultResourceLoaderimplements ConfigurableApplicationContext { private ResourcePatternResolver resourcePatternResolver; public AbstractApplicationContext() { this.resourcePatternResolver = getResourcePatternResolver(); } protected ResourcePatternResolver getResourcePatternResolver() { return new PathMatchingResourcePatternResolver(this); } public Resource[] getResources(String locationPattern) throws IOException { return this.resourcePatternResolver.getResources(locationPattern); } }

    在 PathMatchingResourcePatternResolver 類中,getResource 方法得實現是回調 resourceLoader 得該方法,resourceLoader 初始化得是 AbstractApplicationContext 得實例,所以實際調用得還是 DefaultResourceLoader 中得實現。getResources 方法中,對通配符得解析都在 findPathMatchingResources 方法中。解析得過程也不算復雜,就是先獲取通配符之前得目錄,然后通過文件系統,一層層地輪詢匹配,得到所有得文件,再組裝成 FileSystemResource 對象。

    public class PathMatchingResourcePatternResolver implements ResourcePatternResolver { private final ResourceLoader resourceLoader; private PathMatcher pathMatcher = new AntPathMatcher(); // 調用 ResourceLoader 得 getResource 方法,其實就是調用得 DefaultResourceLoader 類中得方法 public Resource getResource(String location) { return getResourceLoader().getResource(location); } public Resource[] getResources(String locationPattern) throws IOException { Assert.notNull(locationPattern, "Location pattern must not be null"); if (locationPattern.startsWith(CLASSPATH_ALL_URL_PREFIX)) { if (getPathMatcher().isPattern(locationPattern.substring(CLASSPATH_ALL_URL_PREFIX.length()))) { // 如果路徑中有通配符,則解析通配符 return findPathMatchingResources(locationPattern); } else { // 如果路徑中沒有通配符,直接加載即可 return findAllClassPathResources(locationPattern.substring(CLASSPATH_ALL_URL_PREFIX.length())); } } else { int prefixEnd = (locationPattern.startsWith("war:") ? locationPattern.indexOf("*/") + 1 : locationPattern.indexOf(':') + 1); if (getPathMatcher().isPattern(locationPattern.substring(prefixEnd))) { // 如果路徑中有通配符,則解析通配符 return findPathMatchingResources(locationPattern); } else { return new Resource[] {getResourceLoader().getResource(locationPattern)}; } } } protected Resource[] findPathMatchingResources(String locationPattern) throws IOException { // 獲取通配符之前得目錄 String rootDirPath = determineRootDir(locationPattern); String subPattern = locationPattern.substring(rootDirPath.length()); // 再調 getResources 進行加載,rootDirPath 一定是沒有通配符得 Resource[] rootDirResources = getResources(rootDirPath); Set<Resource> result = new linkedHashSet<>(16); for (Resource rootDirResource : rootDirResources) { rootDirResource = resolveRootDirResource(rootDirResource); URL rootDirUrl = rootDirResource.getURL(); if (rootDirUrl.getProtocol().startsWith(ResourceUtils.URL_PROTOCOL_VFS)) { // vfs 開頭 result.addAll(VfsResourceMatchingDelegate.findMatchingResources(rootDirUrl, subPattern, getPathMatcher())); } else if (ResourceUtils.isJarURL(rootDirUrl) || isJarResource(rootDirResource)) { // Jar 包目錄 result.addAll(doFindPathMatchingJarResources(rootDirResource, rootDirUrl, subPattern)); } else { // result.addAll(doFindPathMatchingFileResources(rootDirResource, subPattern)); } } return result.toArray(new Resource[0]); } protected Set<Resource> doFindPathMatchingFileResources(Resource rootDirResource, String subPattern) throws IOException { File rootDir; try { rootDir = rootDirResource.getFile().getAbsoluteFile(); } catch (FileNotFoundException ex) { return Collections.emptySet(); } catch (Exception ex) { return Collections.emptySet(); } return doFindMatchingFileSystemResources(rootDir, subPattern); } protected Set<Resource> doFindMatchingFileSystemResources(File rootDir, String subPattern) throws IOException { // 枚舉目錄下所有得文件,并與 subPattern 進行匹配 Set<File> matchingFiles = retrieveMatchingFiles(rootDir, subPattern); Set<Resource> result = new linkedHashSet<>(matchingFiles.size()); for (File file : matchingFiles) { result.add(new FileSystemResource(file)); } return result; } }蕞后一下,共同學習 Spring 框架源碼

  •  
    (文/馮園玲)
    免責聲明
    本文僅代表作發布者:馮園玲個人觀點,本站未對其內容進行核實,請讀者僅做參考,如若文中涉及有違公德、觸犯法律的內容,一經發現,立即刪除,需自行承擔相應責任。涉及到版權或其他問題,請及時聯系我們刪除處理郵件:weilaitui@qq.com。
     

    Copyright ? 2016 - 2025 - 企資網 48903.COM All Rights Reserved 粵公網安備 44030702000589號

    粵ICP備16078936號

    微信

    關注
    微信

    微信二維碼

    WAP二維碼

    客服

    聯系
    客服

    聯系客服:

    在線QQ: 303377504

    客服電話: 020-82301567

    E_mail郵箱: weilaitui@qq.com

    微信公眾號: weishitui

    客服001 客服002 客服003

    工作時間:

    周一至周五: 09:00 - 18:00

    反饋

    用戶
    反饋

    日本一区二区三区久久久久久久久不_日韩精品一区二区三区三区免费_精品视频一区二区不卡_欧美剧情片在线观看_欧美日韩免费在线视频_欧美成人精品3d动漫h_欧美激情中文字幕一区二区_91色九色蝌蚪_国产做a爰片久久毛片_久久久国产午夜精品_美女视频免费一区_日韩一级免费观看_日本一区二区三区四区在线视频_亚洲三级小视频_久久男人中文字幕资源站_欧美岛国在线观看
    蜜臀91精品一区二区三区 | 亚洲免费观看高清完整版在线观看| 亚洲黄色免费电影| 高清日韩电视剧大全免费| 免费精品视频一区| 欧美精品一区二区久久婷婷| 青青草视频一区| 久久久久一区二区三区| 精品日本一线二线三线不卡| 日本va欧美va精品发布| 国产一区二区免费在线观看| 日韩三级免费观看| 美脚の诱脚舐め脚责91| 日韩欧美视频一区二区| 国产精品日日摸夜夜摸av| 成人午夜大片免费观看| 在线观看日韩电影| 午夜精品久久久久久久久久| 久久人人九九| 久久精品夜夜夜夜久久| 成人久久视频在线观看| 欧美老女人第四色| 免费视频最近日韩| 亚洲最新在线| 亚洲成人你懂的| 日本一区二区三区免费看| 亚洲欧洲另类国产综合| 91免费在线观看网站| 欧美精品一区二区三区四区 | 色女孩综合影院| 亚洲激情网站免费观看| 91美女片黄在线| 精品电影一区二区| www.欧美.com| 精品免费日韩av| 国产·精品毛片| 欧美高清一级片在线| 六月婷婷色综合| 欧美午夜在线观看| 久久99精品国产麻豆婷婷| 欧美综合色免费| 久久黄色级2电影| 欧美日韩视频不卡| 激情成人综合网| 欧美日韩亚洲高清一区二区| 狠狠色丁香婷婷综合| 69av一区二区三区| 粉嫩嫩av羞羞动漫久久久| 日韩欧美高清dvd碟片| www.欧美色图| 久久久久国产免费免费| 国产成人精品免费视频大全最热| 欧美国产精品一区| 蜜桃视频日韩| 丝袜美腿成人在线| 欧美日韩一区二区三区在线看| 国产精品一区免费视频| 欧美xxxx老人做受| 国产精品中出一区二区三区| 亚洲精品免费在线| 中国人体摄影一区二区三区| 蜜臀va亚洲va欧美va天堂| 欧美午夜精品理论片a级按摩| 国产在线播放一区| 日韩精品一区二区三区蜜臀 | 久久青青草原| 一级日本不卡的影视| 制服诱惑一区| 国产成人精品综合在线观看| 久久久不卡网国产精品二区| 久久一区二区精品| 午夜精品久久久久久久久久久| 欧美亚洲一区二区在线| 东方欧美亚洲色图在线| 中文一区二区在线观看| 视频一区二区三| 国产在线麻豆精品观看| 国产欧美精品一区二区色综合朱莉| 国严精品久久久久久亚洲影视| 亚洲高清视频在线| 777色狠狠一区二区三区| 91中文字精品一区二区| 香蕉乱码成人久久天堂爱免费| 欧美日韩视频在线一区二区| 99久久自偷自偷国产精品不卡| 亚洲精品免费播放| 欧美日韩久久久一区| 91色.com| 日韩成人dvd| 久久天天做天天爱综合色| 日韩电影免费观看在| 国产一区二区三区日韩| 国产精品免费视频观看| 一本色道**综合亚洲精品蜜桃冫| 国产成人av一区二区| 亚洲精品欧美在线| 7777女厕盗摄久久久| 久久精品人人做人人爽电影| 久久99精品一区二区三区| 国产免费久久精品| 欧美三级欧美一级| 精品毛片久久久久久| 韩国成人精品a∨在线观看| 国产精品萝li| 欧美军同video69gay| 久久www免费人成精品| 国产九九视频一区二区三区| 亚洲人一二三区| 欧美电视剧免费观看| 亚洲视频欧美在线| 99热最新在线| 国产一区二区三区香蕉| 一区二区三区四区乱视频| 日韩色视频在线观看| 一本一本a久久| 成人在线视频电影| 国产高清不卡一区| 日韩主播视频在线| 国产精品国产a| 欧美大片顶级少妇| 欧美色手机在线观看| 日韩欧美视频一区二区| 91视频你懂的| 经典一区二区三区| 亚洲va天堂va国产va久| 国产女人aaa级久久久级| 欧美男男青年gay1069videost| 日韩欧美视频一区二区| 不卡一区二区三区视频| 国产成人亚洲综合色影视| 丝袜美腿成人在线| 亚洲乱码精品一二三四区日韩在线| 欧美精品一区二区三区一线天视频| 欧美午夜免费电影| 一区二区不卡在线| 日本一区二区三区四区高清视频 | 91丨九色丨蝌蚪丨老版| 蜜臀av在线播放一区二区三区| 亚洲另类中文字| 国产精品久久久久久久久久免费看| 欧美一级日韩不卡播放免费| 在线免费观看日本欧美| 亚洲欧美久久234| 欧洲视频一区二区三区| 国产乱码精品一区二区三区中文| www.av亚洲| 成人免费av网站| 国产一区二区三区四| 久久国产精品色| 蜜臀av一区二区在线免费观看 | 国产成人免费av在线| 另类专区欧美蜜桃臀第一页| 午夜精品免费在线观看| 一区二区日韩电影| 亚洲精品视频在线观看免费| 国产精品美女视频| 国产精品久久一级| 国产精品美女久久久久久久网站| 久久免费精品国产久精品久久久久| 欧美一区二区三区公司| 91精品一区二区三区在线观看| 欧美日韩国产一区二区三区地区| 欧美午夜一区二区三区免费大片| 在线一区二区视频| 欧美午夜精品免费| 欧美无乱码久久久免费午夜一区| 色综合咪咪久久| 在线国产亚洲欧美| 欧美影视一区二区三区| 欧美色老头old∨ideo| 欧美乱妇15p| 日韩欧美国产系列| 欧美成人一区二区三区片免费| 日韩欧美电影在线| 久久久一区二区三区| 久久久精品中文字幕麻豆发布| 久久久亚洲高清| 国产精品久久久99| 一区二区三区**美女毛片| 性做久久久久久| 毛片不卡一区二区| 丰满少妇在线播放bd日韩电影| 99视频在线精品| 久草热久草热线频97精品| 日韩电影大全在线观看| 日本道精品一区二区三区| 欧美日韩国产美| 精品国精品国产| 中文字幕在线不卡| 午夜av一区二区三区| 久久精品国产第一区二区三区| 国产成人一级电影| 成人永久免费| 亚洲一区二区三区免费看| 欧美三级乱人伦电影| 亚洲精品一区二区三区蜜桃下载| 国产精品女人毛片| 视频一区免费在线观看| 国产精品夜夜嗨| 国产三区二区一区久久|