qiuxiafei / zk-web

A web UI for zookeeper
500 stars 153 forks source link

Fix node in URL not URLEncoded #41

Closed coldnight closed 5 years ago

coldnight commented 5 years ago

If a node contains characters that means in URL(like &/=) will cause an error that could not found node.

Here is a test url: http://localhost:8080/node?path=/a=b&version=1, the node path is /a=b&version=1, the correct url should be: %2Fa%3Db%26version%3D1.

coldnight commented 5 years ago

@qiuxiafei

coldnight commented 5 years ago

@qiuxiafei Seems we should add pom.xml to the .gitignore

qiuxiafei commented 5 years ago

Great work!

But pom.xml seems still committed.

coldnight commented 5 years ago

@qiuxiafei Done!

qiuxiafei commented 5 years ago

Merged, thanks!