Grails 3.3.1 控制台给出 404
Grails 3.3.1 console giving 404
我有一个使用 angular 配置文件的 grails 应用程序,我的 build.gradle
中安装了控制台
console "org.grails:grails-console"
我是运行开发模式的应用程序:
Grails application running at http://localhost:8080 in environment: development
转到 http://localhost:8080/console and http://localhost:8080/static/console 时,控制台不显示。使用
Chrome 控制台,我看到发生了 404 错误:
Request URL:http://localhost:8080/static/console
Request Method:GET
Status Code:404
Remote Address:[::1]:8080
Referrer Policy:no-referrer-when-downgrade
我没有可能干扰控制台的自定义拦截器,也不使用 spring 安全或其他安全框架。
如何让 Grails 控制台在我的项目上运行?
要使用基于 Web 的控制台,您需要添加插件:
compile 'org.grails.plugins:grails-console:2.1.1'
grails-console GitHub sources and docs
您的依存关系:
console "org.grails:grails-console"
用于基于 Swing 的控制台,它将 运行 在 "grails console" 命令后
我有一个使用 angular 配置文件的 grails 应用程序,我的 build.gradle
中安装了控制台console "org.grails:grails-console"
我是运行开发模式的应用程序:
Grails application running at http://localhost:8080 in environment: development
转到 http://localhost:8080/console and http://localhost:8080/static/console 时,控制台不显示。使用 Chrome 控制台,我看到发生了 404 错误:
Request URL:http://localhost:8080/static/console
Request Method:GET
Status Code:404
Remote Address:[::1]:8080
Referrer Policy:no-referrer-when-downgrade
我没有可能干扰控制台的自定义拦截器,也不使用 spring 安全或其他安全框架。
如何让 Grails 控制台在我的项目上运行?
要使用基于 Web 的控制台,您需要添加插件:
compile 'org.grails.plugins:grails-console:2.1.1'
grails-console GitHub sources and docs
您的依存关系:
console "org.grails:grails-console"
用于基于 Swing 的控制台,它将 运行 在 "grails console" 命令后