关于controller自动加载

各位,我今天初学ror。安装了ruby1.8.6,php?name=rails" onclick="tagshow(event)" class="t_tag">rails2.0.2,mysql5.0.51b,mongrel
我通过mongrel_rails service::install -N www -c g:\www -e development 把www这个作为一个服务。
启动后,访问首页都正常,显示的应用环境为:
Ruby version 1.8.6 (i386-mswin32)
RubyGems version 0.9.4
Rails version 2.0.2
Active Record version 2.0.2
Action Pack version 2.0.2
Active Resource version 2.0.2
Action Mailer version 2.0.2
Active Support version 2.0.2
Application root g:/www
Environment development
Database adapter mysql

然后我用ruby script/generate controller helloworld index 建立了一个helloworld。
但是这时我直接访问http://localhost:3000/helloworld,报:

Routing Error

No route matches "/helloworld" with {:method=>:get}

但是当我去打开下routes.rb,然后再保存后,再访问就正常显示了。就是说我不用重启服务器,也可以加载,但是我的routes不会自动刷新,需要我把文件修改下才行。这个很奇怪。请大家帮忙看看有没有遇到过。