java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > SpringBoot @GetMapping路径匹配规则

SpringBoot的@GetMapping路径匹配规则、国际化详细教程

作者:Bulut0907

这篇文章主要介绍了SpringBoot的@GetMapping路径匹配规则、国际化,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧

1. @GetMapping路径匹配规则

package org.springframework.boot.autoconfigure.web.servlet;
......省略部分......
public class WebMvcAutoConfiguration {
    ......省略部分......
    public static class WebMvcAutoConfigurationAdapter implements WebMvcConfigurer, ServletContextAware {
        ......省略部分......
        public void configurePathMatch(PathMatchConfigurer configurer) {
            if (this.mvcProperties.getPathmatch().getMatchingStrategy() == MatchingStrategy.ANT_PATH_MATCHER) {
                configurer.setPathMatcher(new AntPathMatcher());
                this.dispatcherServletPath.ifAvailable((dispatcherPath) -> {
                    String servletUrlMapping = dispatcherPath.getServletUrlMapping();
                    if (servletUrlMapping.equals("/") && this.singleDispatcherServlet()) {
                        UrlPathHelper urlPathHelper = new UrlPathHelper();
                        urlPathHelper.setAlwaysUseFullPath(true);
                        configurer.setUrlPathHelper(urlPathHelper);
                    }
                });
            }
        }
        ......省略部分......
    }
    ......省略部分......
}

Ant风格的路径模式语法具有以下规则:

例如:/{type}/{id}.html匹配任意文件名为{id}.html,在任意命名的{type}目录下的文件

注意:Ant 风格的路径模式语法中的特殊字符需要转义,如:

使用示例如下所示。访问http://localhost:8080/abc/bd/abcdef/1/2

    @GetMapping("/a*/b?/{p1:[a-f]+}/**")
    public String hello2(HttpServletRequest request, @PathVariable("p1") String path) {
        log.info("路径变量p1: {}", path);    // 路径变量p1: abcdef
        String uri = request.getRequestURI();
        return uri;    // /abc/bd/abcdef/1/2
    }

2. 国际化

国际化的自动配置参照MessageSourceAutoConfiguration类

实现步骤:

messages.properties:默认。文件内容如下:

login=Login
sign=Sign-Up

messages_zh_CN.properties:中文环境。文件内容如下:

login=登录
sign=注册

messages_en_US.properties:英语环境。文件内容如下:

login=Login
sign=Sign-Up

3.在页面中可以使用表达式#{}获取国际化的配置项值。访问页面会自动根据浏览器的语言设置加载不同的messages消息配置文件

                <button type="button" class="btn btn-outline-light me-2" th:text="#{login}">Login</button>
                <button type="button" class="btn btn-warning" th:text="#{sign}">Sign-up</button>

4.在程序中可以自动注入MessageSource组件,获取国际化的配置项值

package com.hh.springboot3test.controller;
import jakarta.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.MessageSource;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.Locale;
@RestController
public class ControllerTest {
    @Autowired  // 国际化取消息用的组件
    MessageSource messageSource;
    @GetMapping("/global")
    public String global(HttpServletRequest request) {
        Locale locale = request.getLocale();
        // 利用代码的方式获取国际化配置文件中指定的配置项的值
        String login = messageSource.getMessage("login", null, locale);
        // 以rest方式返回数据到页面
        return login;
    }
}

5.application.properties国际化参数配置

spring.messages.basename=messages
spring.messages.encoding=UTF-8

到此这篇关于SpringBoot的@GetMapping路径匹配规则、国际化的文章就介绍到这了,更多相关SpringBoot @GetMapping路径匹配规则内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文