创建springboot项目 (idea版vue-springboot)超详细 超完整_idea 创建vue+springboot_宾宾叔叔的博客-CSDN博客
时间: 2023-12-19 11:04:30 浏览: 195
手把手idea搭建springboot web项目,完整idea源码,小白程序员必看
5星 · 资源好评率100%
好的,我知道你想问关于创建Spring Boot项目的问题。以下是一个基于Idea的Vue+Spring Boot项目创建的详细步骤:
1. 打开Idea,选择“Create New Project”创建一个新项目。
2. 在弹出的“New Project”窗口中,选择“Spring Initializr”项目类型,点击“Next”按钮。
3. 在接下来的窗口中,选择你的项目语言和Spring Boot版本,然后点击“Next”按钮。
4. 进入“Project Metadata”页面,填写项目的基本信息。
5. 在“Dependencies”页面中,选择你需要的依赖项,如Web、JPA、MyBatis等,然后点击“Next”按钮。
6. 设置项目名称和文件路径,然后点击“Finish”按钮,等待项目创建完成。
现在你已经创建了一个空的Spring Boot项目。接下来,我们需要添加Vue前端框架。
7. 打开终端,进入项目文件夹,执行以下命令:
```
npm init
```
8. 执行以下命令安装Vue框架和相关依赖:
```
npm install vue --save
npm install vue-router --save
npm install vuex --save
npm install axios --save
```
9. 创建一个新的Vue组件,例如“App.vue”,并添加以下代码:
```vue
<template>
<div>
<router-view></router-view>
</div>
</template>
<script>
export default {
name: "App",
};
</script>
<style>
</style>
```
10. 创建一个新的Vue路由模块,“router.js”,并添加以下代码:
```javascript
import Vue from "vue";
import Router from "vue-router";
Vue.use(Router);
const router = new Router({
mode: "history",
routes: [
{
path: "/",
name: "home",
component: Home,
},
],
});
export default router;
```
11. 添加以下代码到“main.js”中,初始化Vue并设置路由:
```javascript
import Vue from "vue";
import App from "./App.vue";
import router from "./router";
Vue.config.productionTip = false;
new Vue({
router,
render: (h) => h(App),
}).$mount("#app");
```
12. 创建一个新的Vue组件,“Home.vue”,并添加以下代码:
```vue
<template>
<div>
<h1>Welcome to Vue + Spring Boot!</h1>
</div>
</template>
<script>
export default {
name: "Home",
};
</script>
<style>
</style>
```
现在你已经成功添加了Vue框架,并创建了一个简单的Vue组件和路由。你可以运行Spring Boot应用程序并打开浏览器访问“http://localhost:8080”查看结果。
希望这些步骤可以帮助你创建一个基于Idea的Vue+Spring Boot项目。如果你有任何问题,请随时问我。
阅读全文