root_pathコントローラーが何であれビューを作成できます:
map.root :controller => "foo", :action => "index"
このビューを「db_maintenance.html.erb」と呼んでいるとしましょう。コントローラで、これを行います:
def index
begin
@widgets = Widget.find(:all)
rescue Exception => e
# This will only happen if DB stuff fails
redirect_to :action => "db_maintenance", :error => e.message
end
end
...
def db_maintenance
@error = params[:error] # You might want to do something with this here or in the view
# renders the app/views/foo/db_maintenance.html.erb view
end
あなたの見解では、次のようなものを置くことができます:
<h1>Sorry for the inconvenience</h1>
blah blah blah. This happened because of:
<pre><code><%= @error %></code></pre>
もちろん、これはユーザーがサイトのメインページにアクセスした場合にのみ役立ちますが、そこから簡単に推測できます。 「defdb_maintenance」アクションをアプリケーションコントローラーに追加し、レンダリングするビューを手動で指定することもできます。完璧ではありませんが、仕事を成し遂げるはずです。