WIP: proxy
[maven-thymeleaf-skin] / src / main / java / de / juplo / thymeproxy / RegexUrlHandlerMapping.java
index c7e52b4..9c27b43 100644 (file)
@@ -1,16 +1,23 @@
-/*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
 package de.juplo.thymeproxy;
 
 
+import org.springframework.util.PathMatcher;
+import org.springframework.web.servlet.handler.SimpleUrlHandlerMapping;
+
+
+
 /**
  *
  * @author kai
  */
-public class RegexUrlHandlerMapping
+public class RegexUrlHandlerMapping extends SimpleUrlHandlerMapping
 {
-  
+  private final RegexPathMatcher matcher = new RegexPathMatcher();
+
+
+  @Override
+  public PathMatcher getPathMatcher()
+  {
+    return matcher;
+  }
 }