SpringBoot Web開發

偌十一發表於2024-03-12

JAR :webapp!

自動裝配

在進行一個springboot專案開發前需要解決的問題:

  • 匯入靜態資源。。
  • 首頁
  • jsp,模版引擎Thymeleaf
  • 裝配擴充套件springMVC
  • 增刪改查
  • 攔截器
  • 國際化!

靜態資源

1.在springboot,我們可以使用一下方式處理靜態資源

  • webjars localhost:8080/webjars
  • public,static,/**,resources localhost:8080/
  1. 優先順序:resources>ststic(預設)>public

模版引擎

只要需要使用thymeleaf,只需要匯入對應的依賴就可以了!!!我們將html放在我們的templates目錄下即可!

private static final Charset DEFAULT_ENCODING;
public static final String DEFAULT_PREFIX = "classpath:/templates/";
public static final String DEFAULT_SUFFIX = ".html";
private boolean checkTemplate = true;
private boolean checkTemplateLocation = true;
private String prefix = "classpath:/templates/";
private String suffix = ".html";
private String mode = "HTML";

此處使用的是aliyun映象配置的springboot環境

擴充套件以及SpringMVC配置原理

相關文章