作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我的项目中使用 spring boot 2.0 + ,我想使用 spring boot 的设备解析器,但是,我想 2.0 的设备解析器已被删除,知道如何做到这一点吗? ,我搜索了网络但没有得到任何答案,我点击了这个链接-
但是没能成功
最佳答案
Spring Boot 2.x 没有 spring-mobile-starter
,看起来开发已经停止。
https://github.com/spring-projects/spring-mobile
你唯一真正的选择是,
1.5.x
Spring Boot 发行版2.1
进行更新,因此可能会遇到问题。您还可以尝试在存储库上提出问题并询问项目的状态。
如果您想尝试 Milestone,请将以下内容添加到您的 POM 中。
<dependencies>
<dependency>
<groupId>org.springframework.mobile</groupId>
<artifactId>spring-mobile-starter</artifactId>
<version>2.0.0.M2</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
</repositories>
关于java - 如何在 Spring Boot 2.00 中使用设备解析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53133226/
我是一名优秀的程序员,十分优秀!