mashupbots / socko

A Scala web server powered by Netty networking and AKKA processing.
Other
255 stars 51 forks source link

ReflectUtil: do not count in classes with special char when load from JAR #78

Closed gnawux closed 10 years ago

gnawux commented 10 years ago

when load from file, it only load classname with letter and digits, but load from jar does not do this check, class with dollar will be loaded and lead to register error

this lead to load error in my socko-rest server, and this patch could fix it for me

veebs commented 10 years ago

Thanks @gnawux