mkopylec / charon-spring-boot-starter

Reverse proxy implementation in form of a Spring Boot starter.
Apache License 2.0
247 stars 55 forks source link

Do not treat /path and /path/something as duplicated mappings. #13

Closed mkopylec closed 8 years ago

mkopylec commented 8 years ago

request to /path/* -> mapped to /path request to /path/something/* -> mapped to /path/something

matheusmessora commented 8 years ago

@mkopylec I'm doing some work on this issue. Trying to help.

I ordered the mappings from the more context-specific first (like /uri/context/a comes first when compared to /uri/context). When the "resolvedMappings" are found, the first one is returned.

mkopylec commented 8 years ago

Done