如何从 grails 中的 url 中删除应用程序名称和端口?
将我的应用程序部署到
http://localhost:8080/myApp
我不想
http://localhost
Instead of deploying my app to
http://localhost:8080/myApp
I want to deploy it to
http://localhost
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要更改运行应用程序端口,请编辑 grails-app/conf/BuildConfig.groovy 并添加行
要删除上下文(“myApp”部分),请编辑 application.properties 并添加行
To change the run-app port, edit
grails-app/conf/BuildConfig.groovy
and add the lineTo remove the context (the 'myApp' part) edit application.properties and add the line
将您的应用程序部署到 Tomcat 服务器,战争名称为 ROOT.war。
因为战争名称描述了上下文... papa.war 将通过 [root_domain]/papa 提供
deploy your app to a tomcat server with the war name as ROOT.war.
Because war names describe contexts... papa.war will be available through [root_domain]/papa
要删除端口,请使用:
To remove the port, use: