【发布时间】:2018-12-29 15:15:01
【问题描述】:
我对弹簧靴很熟悉。现在我当然想使用Vue.js、thymeleaf(只有少数像片段这样的东西)和Spring Boot。
我不确定项目结构。我真的需要frontend client 和backend client 吗?在做研究的时候,我经常看到这样的树,上面有三个pom.xml:
├── project
├── backend
│ ├── src
│ └── pom.xml
├── frontend
│ ├── src
│ └── pom.xml
└── pom.xml
现在我的项目是这样的:
├── application.properties
├── com
│ └── elps
│ └── fileconverter
│ ├── controller
│ │ └── FileConverterController.class
│ └── FileconverterApplication.class
├── static
│ └── css
│ ├── normalize.css
│ └── skeleton.css
└── templates
├── fragments
│ ├── footer.html
│ └── header.html
└── index.html
使用Vue.js 和Spring Boot 构建项目的常用方法是什么?
我得到的唯一要求是不要执行脚本within HTML 文件。
【问题讨论】:
标签: spring-boot vue.js architecture project-structure