rails5在application.rb中添加
config.autoload_paths += %W(#{config.root}/lib)
不起作用,网上看了下,说rails5生产环境autoload_paths默认关闭,很多都说把autoload_paths改为eager_load_paths,但我改后网站直接打不开,报502错误,去到服务器top看了下,很多ruby进程,而且还不断有新的
而后又看到一个方法,添加
config.enable_dependency_loading = true
这下就可以加载了
config.enable_dependency_loading = true
config.autoload_paths += %W(#{config.root}/lib)