真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Springboot怎么讀取templates文件html-創(chuàng)新互聯(lián)

這篇文章主要講解了“Springboot怎么讀取templates文件html”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Springboot怎么讀取templates文件html”吧!

創(chuàng)新互聯(lián)建站服務(wù)項目包括和龍網(wǎng)站建設(shè)、和龍網(wǎng)站制作、和龍網(wǎng)頁制作以及和龍網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,和龍網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到和龍省份的部分城市,未來相信會繼續(xù)擴大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

SpringBoot里面沒有我們之前常規(guī)web開發(fā)的WebContent(WebApp),它只有src目錄

在src/main/resources下面有兩個文件夾,static和templates springboot默認 static中放靜態(tài)頁面,而templates中放動態(tài)頁面

在不使用第三方j(luò)ar包的情況下, Springboot不能直接訪問templates下的靜態(tài)頁面, 需要加其他jar包依賴。

代碼如下

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.util.ClassUtils;
import org.springframework.web.bind.annotation.RequestMapping;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.*;

@Controller
public class PageController {
  private static ClassLoader classLoader = ClassUtils.getDefaultClassLoader();
  private static final Logger log = LoggerFactory.getLogger(PageController.class);

  @RequestMapping("/")
  public void root(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    request.getRequestDispatcher("/index.html").forward(request, response);
  }

  @RequestMapping("**.html")
  public void page(HttpServletRequest request, HttpServletResponse response) throws IOException {
    InputStreamReader streamReader = null;
    try {
      String servletPath = request.getServletPath();
      log.info(request.getMethod() + " " + servletPath);
      String filePath = "templates" + servletPath;

      InputStream inputStream = classLoader.getResourceAsStream(filePath);
      if (inputStream == null) {
        response.sendError(404);
        return;
      }
      streamReader = new InputStreamReader(inputStream);
      PrintWriter printWriter = response.getWriter();
      response.setContentType("text/html");

      int readChar;
      while ((readChar = streamReader.read()) != -1) {
        printWriter.write(readChar);
      }
      printWriter.flush();
    } finally {
      if (streamReader != null) streamReader.close();
    }
  }
}

感謝各位的閱讀,以上就是“Springboot怎么讀取templates文件html”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對Springboot怎么讀取templates文件html這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián)建站,小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)建站www.cdcxhl.com,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


網(wǎng)站標題:Springboot怎么讀取templates文件html-創(chuàng)新互聯(lián)
網(wǎng)站路徑:http://weahome.cn/article/dcidhh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部