JAVA-943: Migrate spring-mobile to parent-boot-2
This commit is contained in:
parent
22f622521f
commit
f58c322ae2
|
@ -10,9 +10,9 @@
|
||||||
|
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>com.baeldung</groupId>
|
<groupId>com.baeldung</groupId>
|
||||||
<artifactId>parent-boot-1</artifactId>
|
<artifactId>parent-boot-2</artifactId>
|
||||||
<version>0.0.1-SNAPSHOT</version>
|
<version>0.0.1-SNAPSHOT</version>
|
||||||
<relativePath>../parent-boot-1</relativePath>
|
<relativePath>../parent-boot-2</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
@ -23,11 +23,24 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.mobile</groupId>
|
<groupId>org.springframework.mobile</groupId>
|
||||||
<artifactId>spring-mobile-device</artifactId>
|
<artifactId>spring-mobile-device</artifactId>
|
||||||
|
<version>${spring-mobile-device.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-freemarker</artifactId>
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>spring-milestones</id>
|
||||||
|
<name>Spring Milestones</name>
|
||||||
|
<url>https://repo.spring.io/libs-milestone</url>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
<properties>
|
||||||
|
<spring-mobile-device.version>2.0.0.M3</spring-mobile-device.version>
|
||||||
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
package com.baeldung;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
import org.springframework.mobile.device.DeviceHandlerMethodArgumentResolver;
|
||||||
|
import org.springframework.mobile.device.DeviceResolverHandlerInterceptor;
|
||||||
|
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
|
||||||
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
||||||
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class AppConfig implements WebMvcConfigurer {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public DeviceResolverHandlerInterceptor deviceResolverHandlerInterceptor() {
|
||||||
|
return new DeviceResolverHandlerInterceptor();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public DeviceHandlerMethodArgumentResolver deviceHandlerMethodArgumentResolver() {
|
||||||
|
return new DeviceHandlerMethodArgumentResolver();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void addInterceptors(InterceptorRegistry registry) {
|
||||||
|
registry.addInterceptor(deviceResolverHandlerInterceptor());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) {
|
||||||
|
argumentResolvers.add(deviceHandlerMethodArgumentResolver());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -16,13 +16,16 @@ public class IndexController {
|
||||||
|
|
||||||
String deviceType = "browser";
|
String deviceType = "browser";
|
||||||
String platform = "browser";
|
String platform = "browser";
|
||||||
|
String viewName = "index";
|
||||||
|
|
||||||
if (device.isNormal()) {
|
if (device.isNormal()) {
|
||||||
deviceType = "browser";
|
deviceType = "browser";
|
||||||
} else if (device.isMobile()) {
|
} else if (device.isMobile()) {
|
||||||
deviceType = "mobile";
|
deviceType = "mobile";
|
||||||
|
viewName = "mobile/index";
|
||||||
} else if (device.isTablet()) {
|
} else if (device.isTablet()) {
|
||||||
deviceType = "tablet";
|
deviceType = "tablet";
|
||||||
|
viewName = "tablet/index";
|
||||||
}
|
}
|
||||||
|
|
||||||
platform = device.getDevicePlatform().name();
|
platform = device.getDevicePlatform().name();
|
||||||
|
@ -33,7 +36,7 @@ public class IndexController {
|
||||||
|
|
||||||
LOGGER.info("Client Device Type: " + deviceType + ", Platform: " + platform);
|
LOGGER.info("Client Device Type: " + deviceType + ", Platform: " + platform);
|
||||||
|
|
||||||
return "index";
|
return viewName;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1,3 @@
|
||||||
spring.mobile.devicedelegatingviewresolver.enabled: true
|
spring.mobile.devicedelegatingviewresolver.enabled: true
|
||||||
|
spring.freemarker.template-loader-path: classpath:/templates
|
||||||
|
spring.freemarker.suffix: .ftl
|
Loading…
Reference in New Issue