Rails 服务器看不到代码更改并重新加载文件

Posted

技术标签:

【中文标题】Rails 服务器看不到代码更改并重新加载文件【英文标题】:Rails server doesn't see code changes and reload files 【发布时间】:2016-06-27 20:03:27 【问题描述】:

我注意到我的 Rails 服务器在更改控制器、模型和可能的任何其他文件后不会重新加载它们。我使用 Vagrant 和 Rails API,我发现有些人通过在Vagrantfile 中添加以下行来解决这个问题。

config.vm.provider "virtualbox" do |vb|
  vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 5000 ]
end

它不能解决我的问题。我想不出我还能做些什么来解决这个问题。我附上可能对你有用的文件。

我的Gemfile 看起来像这样:

source 'https://rubygems.org'

gem 'rake', '< 11.0'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '>= 5.0.0.beta3', '< 5.1'
# Use mysql as the database for Active Record
# gem 'mysql2', '>= 0.3.18', '< 0.5'

# User PostgreSQL as the database for Active Record
gem 'pg', '~> 0.18'

gem 'active_model_serializers'

gem 'rspec-its'

gem 'database_cleaner'

# Use Puma as the app server
gem 'puma'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Gem allowing using external APIs
gem 'httparty'

# Auth0 gem for authentication using JWT
gem 'knock'

gem 'jwt'

# OpenID Omniauth gem for authenticating Steam users
gem 'omniauth-steam'

# Gem for managing environment variables
gem 'figaro'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors', :require => 'rack/cors'

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'
  gem 'rspec-rails', '~> 3.0'
  gem 'factory_girl_rails'
  gem 'ffaker'
end

group :test do
  gem 'shoulda-matchers'
  gem 'json-schema'
end

group :development do
  gem 'listen', '~> 2.10'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

由于日志的开头,我确定我在开发模式下运行我的服务器

=> Booting Puma
=> Rails 5.0.0.beta3 application starting in development on http://0.0.0.0:3000
=> Run `rails server -h` for more startup options
=> Ctrl-C to shutdown server
Puma starting in single mode...
* Version 3.1.0 (ruby 2.2.3-p173), codename: El Niño Winter Wonderland
* Min threads: 5, max threads: 5
* Environment: development
* Listening on tcp://0.0.0.0:3000

这是我的development.rb 文件

Rails.application.configure do
  # Settings specified here will take precedence over those in config/application.rb.

  # In the development environment your application's code is reloaded on
  # every request. This slows down response time but is perfect for development
  # since you don't have to restart the web server when you make code changes.
  config.cache_classes = false

  # Do not eager load code on boot.
  config.eager_load = false

  # Show full error reports.
  config.consider_all_requests_local = true

  # Enable/disable caching. By default caching is disabled.
  if Rails.root.join('tmp/caching-dev.txt').exist?
    config.action_controller.perform_caching = true

    config.action_mailer.perform_caching = false

    config.cache_store = :memory_store
    config.public_file_server.headers = 
      'Cache-Control' => 'public, max-age=172800'
    
  else
    config.action_controller.perform_caching = false

    config.action_mailer.perform_caching = false

    config.cache_store = :null_store
  end

  # Don't care if the mailer can't send.
  config.action_mailer.raise_delivery_errors = false

  # Print deprecation notices to the Rails logger.
  config.active_support.deprecation = :log

  # Raise an error on page load if there are pending migrations.
  config.active_record.migration_error = :page_load


  # Raises error for missing translations
  # config.action_view.raise_on_missing_translations = true

  # Use an evented file watcher to asynchronously detect changes in source code,
  # routes, locales, etc. This feature depends on the listen gem.
  config.file_watcher = ActiveSupport::EventedFileUpdateChecker
end

我的Vagrantfile

Vagrant.configure(2) do |config|

  if Vagrant.has_plugin?("vagrant-timezone")
    config.timezone.value = "Europe/Warsaw"
  end

  config.vm.box = "ubuntu/trusty64"

  config.vm.network :forwarded_port, guest: 3000, host: 3000
  config.vm.synced_folder "E:/Projekty - Rails", "/home/projekty"

  config.vm.provider "virtualbox" do |vb|
    vb.customize [ "guestproperty", "set", :id, "/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold", 5000 ]
  end
end

【问题讨论】:

在 development.rb 文件中,可以添加 config.threadsafe 吗!线。请检查它是否工作? @MohammadShahadatHossain 当我尝试启动服务器时它会导致错误。我使用rails api,所以这可能是原因,对吧? 使用 rails api 应该不是问题。可能缺少某些配置,这就是问题发生的原因。 您能出示您的Vagrantfile 文件吗?我认为问题存在。 @MohammadShahadatHossain 添加了Vagrantfile 【参考方案1】:

将以下内容添加到config/environments/development.rb

#config.file_watcher = ActiveSupport::EventedFileUpdateChecker
config.file_watcher = ActiveSupport::FileUpdateChecker

FileUpdateChecker会通过轮询文件的变化来检测。

【讨论】:

在我的 development.rb 中进行了更改,并且像魅力一样工作 - 谢谢 也为我工作。我已经痛苦了两个多星期,认为这是 Rails 5 beta 的一个错误。谢谢! 嗨,Rev3rse。使用 Virtual Box 的共享文件夹,出现了这个问题。因为操作系统(在运行的 vm 中)无法检测到共享文件夹中的文件更改事件。 我也使用共享文件夹。没有 Vagrant,只有 Windows 10 作为主机,Ubuntu 16.04 作为客户机。当我过去在 Windows 中更新文件时,Rails 没有看到更改。建议的解决方案有所帮助,谢谢。 在带有 Win10 主机和 Ubuntu 客户机的 Vagrant 上为我工作。谢谢!【参考方案2】:

我已经解决了在development.rb 文件中添加以下行的问题。

config.reload_classes_only_on_change = false

【讨论】:

由于某种原因,这使我的 puma 服务器变得非常慢,并开始破坏我的一些设计用户会话路由。诡异的。将再试一次,看看它是否仍然发生。 是的,它给了我一个Read error: #&lt;ActiveRecord::ConnectionTimeoutError: could not obtain a connection from the pool within 5.000 seconds (waited 5.000 seconds); all pooled connections were in use&gt; 问题。不知道是不是我做错了其他事情的变化或副作用造成的。 @JayKilleen 我没有在我的项目中使用 Devise,所以我没有遇到这种类型的错误。经过快速研究,我找到了解决您问题的可能方法。您可以阅读更多link 并尝试一下。 我怀疑你会发现它很慢,因为它可能会重新加载所有类,而不仅仅是更改的类,并且在每次请求时都会这样做。 如果 config.cache_classes 为真,则忽略此选项。【参考方案3】:

pocar​​i 的解决方案对我有用,但我必须等待几秒钟才能重新加载页面,否则内容并不总是更新。

按照this answer 中的描述向synced_folder 添加一个选项效果很好:

config.vm.synced_folder ".", "/vagrant", type: "nfs", mount_options: ['actimeo=1']

(并且不需要更改development.rb

【讨论】:

【参考方案4】:

这对我来说适用于 ruby​​ 2.6.5 和 Rails 5.2.4.1。:

在 config/environments/development.rb 中添加以下行:

config.file_watcher = ActiveSupport::EventedFileUpdateChecker

随着

config.cache_classes = false

在同一个文件中,并且

gem 'listen'

在 Gemfile 的 :development 组中。

【讨论】:

【参考方案5】:

我遇到了同样的问题,所以我做了一个像这样的快速脚本bump。确保您首先位于您的应用文件夹中。

!#/bin/bash

rake db:migrate
echo "MIGRATED"
rake routes
echo "routed"
sudo service apache2 restart
echo "web server reloaded"

现在您只需键入./bump,它将运行所有三个命令,然后您就知道所有内容都已加载。我也使用此方法重复此操作,就像为 devise 等 gem 安装命令行一样。

【讨论】:

以上是关于Rails 服务器看不到代码更改并重新加载文件的主要内容,如果未能解决你的问题,请参考以下文章

Rails:每次使用控制台更改代码时重新启动服务器

文件更改时如何自动重新加载Django?

在文件更改时自动重新编译和重新加载服务器

gulp-nodemon + browser-sync:服务器端代码更改后应用程序不会重新加载

Django:当本地 .py 文件更改并动态加载时,有没有办法防止开发服务器重新启动?

Ruby on Rails 3 - 为每个请求重新加载 lib 目录