Spring Boot使用Spring Mobile组件快速判断请求来源的设备
springboot实战电商项目mall4j (https://gitee.com/gz-yami/mall4j)
先上效果图
iPhone:

iPad:

Android:


PC:

1:首先在maven添加依赖,(2.0起可用)
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>mobile</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>mobile</name>
<desc

本文介绍了如何在Spring Boot应用中使用Spring Mobile组件来快速判断HTTP请求来自哪种设备,如iPhone、iPad、Android还是PC。通过添加依赖、配置拦截器和编写接口,实现了设备识别功能,并提供了启动应用后的访问效果展示。
最低0.47元/天 解锁文章
3815

被折叠的 条评论
为什么被折叠?



