英文:
Jhipster deploy only frontend ( existing project )
问题
我正在使用Jhipster开发我的Web应用,使用了Spring Boot和Angular。
我想与前端自由开发者合作,为此我希望将前端部署到单独的位置。
我应该如何做呢?
英文:
I'm using Jhipster for my web application, Spring Boot and angular.
I want to work with frontend freelance developer, For that I would like to deploy the frontend separately.
How can I do it?
答案1
得分: 1
就像Gaël Marziou提到的那样,没有必要将前端代码与后端代码分开。您的应用是用Angular生成的:您会在src/main/webapp
中找到前端代码,并且您可以使用任何开发工具编辑您的jhipster生成的应用的Angular代码。
您还可以只使用jhipster --skip-server
生成前端,如https://www.jhipster.tech/creating-an-app/中所述。
英文:
Like Gaël Marziou mentioned, it isn't necessary to separate the frontend code from the backend code. Your app is generated with angular: you'll find the frontend code in src/main/webapp
and you can edit the Angular-code of your jhipster generated application with any development tool.
You also can generate the frontend only with jhipster --skip-server
as mentioned in https://www.jhipster.tech/creating-an-app/.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论