Это 18-й день моего участия в августовском испытании обновлений. Узнайте подробности события:Испытание августовского обновления
1. Введение
Использовать SpringBoot;
1) Создаем приложение SpringBoot и выбираем нужные нам модули;
2), SpringBoot уже настроил эти сценарии по умолчанию, вам нужно только указать небольшой объем конфигурации в файле конфигурации для запуска
3) Напишите свой собственный бизнес-код;
2. Правила сопоставления Spring Boot для статических ресурсов
WebMvcAutoConfiguration.java
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
if (!this.resourceProperties.isAddMappings()) {
logger.debug("Default resource handling disabled");
return;
}
Duration cachePeriod = this.resourceProperties.getCache().getPeriod();
CacheControl cacheControl = this.resourceProperties.getCache().getCachecontrol().toHttpCacheControl();
if (!registry.hasMappingForPattern("/webjars/**")) {
customizeResourceHandlerRegistration(registry.addResourceHandler("/webjars/**")
.addResourceLocations("classpath:/META-INF/resources/webjars/")
.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
}
String staticPathPattern = this.mvcProperties.getStaticPathPattern();
if (!registry.hasMappingForPattern(staticPathPattern)) {
customizeResourceHandlerRegistration(registry.addResourceHandler(staticPathPattern)
.addResourceLocations(getResourceLocations(this.resourceProperties.getStaticLocations()))
.setCachePeriod(getSeconds(cachePeriod)).setCacheControl(cacheControl));
}
}
(1), все /webjars/, найти ресурсы в classpath:/META /resources/webjars/
webjars: импортировать ресурсы в виде пакетов jar
<!--引入 jquery 的webjar-->
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>3.3.1</version>
</dependency>
Доступ: локальный: 8080/webjars/jquery/3.3.1/jquery.js
(2), "/**" для доступа к любому ресурсу текущего проекта и добавления пользовательского файла ресурсов.
Получите путь к статическому ресурсу, отследите метод и получите:
Поместите статические ресурсы в одну из следующих папок, и проект сможет получить к ним доступ.
"classpath:/META-INF/resources/",
"classpath:/resources/",
"classpath:/static/",
"classpath:/public/"
"/": 当前项目的根路径
// classpath就是创建项目自带的resources文件夹
(3), страница приветствия, все страницы index.html в папке статических ресурсов
В любой из вышеуказанных папок статических ресурсов напишите файл index.html. Домашняя страница, которая появляется при доступе к localhost:8080, представляет собой этот файл.
// 配置欢迎页映射
@Bean
public WelcomePageHandlerMapping welcomePageHandlerMapping(ApplicationContext applicationContext,
FormattingConversionService mvcConversionService, ResourceUrlProvider mvcResourceUrlProvider) {
WelcomePageHandlerMapping welcomePageHandlerMapping = new WelcomePageHandlerMapping(
new TemplateAvailabilityProviders(applicationContext), applicationContext, getWelcomePage(),
this.mvcProperties.getStaticPathPattern());
welcomePageHandlerMapping.setInterceptors(getInterceptors(mvcConversionService, mvcResourceUrlProvider));
welcomePageHandlerMapping.setCorsConfigurations(getCorsConfigurations());
return welcomePageHandlerMapping;
}
(4), файл значка, файл favicon.ico в папке статических ресурсов
При доступе значок не вылезает? Перезапускаем проект, чистим, ctrl+f5 в браузере. Полный комплект
(5), настройте путь к папке статического ресурса
spring.resources.static-locations=classpath:/hello/,classpath:/world/
После настройки путь к папке статического ресурса по умолчанию больше не будет действовать.
3. Механизм шаблонов
1. Использование и синтаксис Thymeleaf
@ConfigurationProperties(prefix = "spring.thymeleaf")
public class ThymeleafProperties {
private static final Charset DEFAULT_ENCODING = StandardCharsets.UTF_8;
public static final String DEFAULT_PREFIX = "classpath:/templates/";
public static final String DEFAULT_SUFFIX = ".html";
Просто поместите HTML-страницу в путь к классам:/templates/, и Thymeleaf сможет автоматически отображать ее.
Импортируйте пространство имен Thymeleaf:
<html lang="en" xmlns:th="http://www.thymeleaf.org">
грамматика:
(1), правила грамматики
(официальная документация с использованием тимелеафа, приоритет 10 атрибутов)
th:text, заменить атрибут text в текущем элементе
th: любой атрибут html для замены значения собственного атрибута
пример:
<!-- 转义特殊字符 -->
<div th:text="${hello}"></div>
<!-- 不转义特殊字符 -->
<div th:utext="${hello}"></div>
<hr>
<!-- 循环遍历 -->
<h4 th:text="${user}" th:each="user:${users}"></h4>
<hr>
<h4>
<!-- 行内写法 -->
<span th:each="user:${users}">[[${user}]]</span>
</h4>
(2), выражение
(официальная документация с использованием тимелеафа, 4 стандартного синтаксиса выражений)
Simple expressions: (表达式语法)
Variable Expressions: ${...} 获取变量值
1)、获取对象的属性、调用方法
2)、使用内置的基本对象
#ctx : the context object.
#vars: the context variables.
#locale : the context locale.
#request : (only in Web Contexts) the HttpServletRequest object.
#response : (only in Web Contexts) the HttpServletResponse object.
#session : (only in Web Contexts) the HttpSession object.
#servletContext : (only in Web Contexts) the ServletContext object.
例:
${session.foo} // Retrieves the session atttribute 'foo'
${session.size()}
${session.isEmpty()}
${session.containsKey('foo')}
...
3)、内置的工具对象
#execInfo : information about the template being processed.
#messages : methods for obtaining externalized messages inside variables expressions, in the same way as theywould be obtained using #{…} syntax.
#uris : methods for escaping parts of URLs/URIs
#conversions : methods for executing the configured conversion service (if any).
#dates : methods for java.util.Date objects: formatting, component extraction, etc.
#calendars : analogous to #dates , but for java.util.Calendar objects.
#numbers : methods for formatting numeric objects.
#strings : methods for String objects: contains, startsWith, prepending/appending, etc.
#objects : methods for objects in general.
#bools : methods for boolean evaluation.
#arrays : methods for arrays.
#lists : methods for lists.
#sets : methods for sets.
#maps : methods for maps.
#aggregates : methods for creating aggregates on arrays or collections.
#ids : methods for dealing with id attributes that might be repeated (for example, as a result of an iteration).
例:
${#strings.isEmpty(name)}
${#strings.arrayIsEmpty(nameArr)}
${#strings.listIsEmpty(nameList)}
...
Selection Variable Expressions: *{...} 选择表达式,和${}在功能上是一样的
补充:配合 th:object="${session.user}"
<div th:object="${session.user}">
<p>Name: <span th:text="*{firstName}">Sebastian</span>.</p>
<p>Surname: <span th:text="*{lastName}">Pepper</span>.</p>
<p>Nationality: <span th:text="*{nationality}">Saturn</span>.</p>
</div>
Message Expressions: #{...} 获取国际化内容
Link URL Expressions: @{...} 定义URL
<a href="details.html" th:href="@{/order/details(orderId=${o.id},order2=${o.name})}">view</a>
Fragment Expressions: ~{...} 片段文档引用
<div th:insert="~{common :: #topbar}"></div>
Literals(字面量)
Text literals: 'one text' , 'Another one!' ,…
Number literals: 0 , 34 , 3.0 , 12.3 ,…
Boolean literals: true , false
Null literal: null
Literal tokens: one , sometext , main ,…
Text operations:(文本操作)
String concatenation: +
Literal substitutions: |The name is ${name}|
Arithmetic operations:(数学运算)
Binary operators: + , - , * , / , %
Minus sign (unary operator): -
Boolean operations:(布尔运算)
Binary operators: and , or
Boolean negation (unary operator): ! , not
Comparisons and equality:(比较运算)
Comparators: > , < , >= , <= ( gt , lt , ge , le )
Equality operators: == , != ( eq , ne )
Conditional operators:(条件运算)
If-then: (if) ? (then)
If-then-else: (if) ? (then) : (else)
Default: (value) ?: (defaultvalue)
Special tokens:
No-Operation: _