关于jhipster的介绍在国内可以找到不少资料,也可以拉到底部查看链接。
这篇文章主要介绍jhipster-register3.0如何编译运行起来。因jhipster 3.0.1 前端需要yarn 进行build, 不然打开访问会到的将会是空白页面。由于这个原因昨天搞了半天,晚上的时候在stackoverflow.com上面看一位老兄也碰到这个情况,看其他人的评论才知道是yarn没buid成功导致的。
a、从git上clone项目
~ root# git clone https://github.com/jhipster/jhipster-registry.git
b、运行mvnw构建项目java部分
~ root# cd jhipster-registry/
jhipster-registry root# ./mvnw
c、运行yarn构建项目前端部分
jhipster-registry root# yarn
jhipster-registry root# yarn add node-sass
jhipster-registry root# yarn start
yarn add node-sass 是为了安装依赖的node-sass包,这一步并不是一定要执行,只是在安装yarn时,node-sass没有安装成功,为了重新安装node-sass包而挂靠,不然前端构建会报错。
编译完成后, 重新执行./mvnw启动项目, 就可以通过http://127.0.0.1:8761 访问注册中心了。
相关资料
jhipster介绍 http://lming.leanote.com/post/bd1a2d1ac888#microservices_vs_monolithic
jhipster stackoverflow论坛 https://stackoverflow.com/questions/tagged/jhipster
yarn https://yarnpkg.com/en/docs/cli/run