当前位置:   article > 正文

超详细的前后端实战项目(Spring系列加上vue3)前端篇+后端篇(三)(一步步实现+源码)

超详细的前后端实战项目(Spring系列加上vue3)前端篇+后端篇(三)(一步步实现+源码)

好了,兄弟们,继昨天的项目之后,开始继续敲前端代码,完成前端部分(今天应该能把前端大概完成开启后端部分了)

昨天补充了一下登录界面加上了文章管理界面和用户个人中心界面

完善用户个人中心界面

修改一下昨天写的个人用户中心界面,先从用户介绍这块开始改一下吧,这里肯定是要用到一些图标的,去组件库找找

OK,找到了(今天的组件库也是格外好用)

这里因为要用图标要专门引入一下,那就复制粘贴一下代码,把它放到main.js中吧

  1. import { createApp } from 'vue'
  2. import ArcoVue from '@arco-design/web-vue';
  3. // 额外引入图标库
  4. import ArcoVueIcon from '@arco-design/web-vue/es/icon';
  5. import App from './App.vue';
  6. import '@arco-design/web-vue/dist/arco.css';
  7. const app = createApp(App);
  8. app.use(ArcoVue);
  9. app.use(ArcoVueIcon);
  10. app.mount('#app');
  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  4. import store from './store'
  5. import ArcoVue from '@arco-design/web-vue';
  6. import '@arco-design/web-vue/dist/arco.css';
  7. import ArcoVueIcon from '@arco-design/web-vue/es/icon';
  8. createApp(App).use(store).use(ArcoVue).use(ArcoVueIcon).use(router).mount('#app')

然后就可以点击图标进行使用了,

个人介绍这一块,我想到的就是在左上角加上一个用户图片,然后加上昵称,文章总数,粉丝数,关注人数,个人介绍什么的,还挺多的,暂时先写几个常用的吧,后续要添加的话也不难

  1. <template>
  2. <div id="userCenter">
  3. <a-layout style="height: 100vh">
  4. <a-layout-header>
  5. <div class="header">
  6. <div class="user-introduce">
  7. <img :src="userNum.userImg" width="70px" height="70px" class="user-img" />
  8. <div>
  9. <div class="personal-introduce">
  10. <div style="margin-left: 10px">
  11. <span class="name">{{ userNum.userName }}</span>
  12. <span class="sex-icon"></span>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="user-follow">
  18. {{ userNum.attention }}
  19. <icon-star />
  20. <span class="follow-num">关注</span>
  21. {{ userNum.fans }}
  22. <icon-heart />
  23. <span class="follow-num">粉丝</span>
  24. {{ userNum.article }}
  25. <icon-select-all />
  26. <span class="follow-num">文章</span>
  27. </div>
  28. <div class="user-follow">个人简介:{{userSelfIntroduce}} </div>
  29. </div>
  30. </a-layout-header>
  31. <a-layout style="margin: 24px 120px">
  32. <a-layout-sider>Sider</a-layout-sider>
  33. <a-layout-content>Content</a-layout-content>
  34. </a-layout>
  35. <a-layout-footer>Footer</a-layout-footer>
  36. </a-layout>
  37. </div>
  38. </template>
  39. <script setup>
  40. import { ref } from "vue";
  41. import avatar from '../assets/userbg.png'
  42. const userSelfIntroduce = ref("这个人很懒,什么都没有留下");
  43. // const userSelfSex = ref("male");
  44. const userNum = ref({
  45. userImg : avatar,
  46. // userImg :'../assets/userbg.jpg',
  47. userName: "我是小丑",
  48. attention: 0,
  49. fans: 0,
  50. article: 0
  51. })
  52. </script>
  53. <style lang="scss" scoped>
  54. #userCenter {
  55. background: url("../assets/image.png") no-repeat bottom center / 100% 100%;
  56. }
  57. .header {
  58. font-family: "Satisfy", cursive;
  59. margin: 5% 100px 2% 100px;
  60. height: 20vh;
  61. background: url("../assets/back.png") no-repeat center / 100% 100%;
  62. }
  63. .personal-introduce {
  64. display: flex;
  65. justify-content: center;
  66. align-items: flex-end;
  67. margin-top: 10px;
  68. text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.31);
  69. .name {
  70. line-height: 29px;
  71. font-size: 26px;
  72. }
  73. .sex-icon {
  74. display: inline-block;
  75. width: 16px;
  76. height: 16px;
  77. margin: 0px 8px;
  78. margin-bottom: 4px;
  79. background: url(../assets/user-images/sex-icon.png) no-repeat center;
  80. background-size: contain;
  81. border-radius: 50%;
  82. }
  83. .level-icon {
  84. display: inline-block;
  85. width: 16px;
  86. height: 16px;
  87. margin-bottom: 4px;
  88. background: url(../assets/user-images/leval-icon.png) no-repeat center;
  89. background-size: contain;
  90. border-radius: 50%;
  91. }
  92. }
  93. .user-introduce {
  94. display: flex;
  95. justify-items: left;
  96. padding: 10px;
  97. }
  98. .user-img {
  99. border-radius: 50%;
  100. margin-left: 20px;
  101. }
  102. .user-follow{
  103. margin-left: 30px;
  104. font-size: 16px;
  105. display: flex;
  106. justify-items: left;
  107. }
  108. .follow-num{
  109. font-size: 16px;
  110. padding-right: 20px;
  111. }
  112. </style>

(个人感觉好丑,hhh)

这边一些不确定的元素都可以先定义数据模型存放未从后端拿取数据的默认状态

下面来开发一下侧栏的代码,这里可以试试这个伸缩框(感觉会很有意思)这里只需要加上一个属性就OK(:resize-directions="['right']")

这样就实现了左右伸缩功能了,然后我们整一个布局

  1. <a-layout style="margin: 24px 120px">
  2. <a-layout-sider :resize-directions="['right']">
  3. <a-layout >
  4. <a-layout-content>Content</a-layout-content>
  5. <a-layout-content>Content</a-layout-content>
  6. <a-layout-content>Content</a-layout-content>
  7. </a-layout>
  8. </a-layout-sider>

加一个全是内容的区域吧,

这边再给侧栏和内容区域填充颜色就差不多了

  1. <template>
  2. <div id="userCenter">
  3. <a-layout style="height: 100vh">
  4. <a-layout-header>
  5. <div class="header">
  6. <div class="user-introduce">
  7. <img :src="userNum.userImg" width="70px" height="70px" class="user-img" />
  8. <div>
  9. <div class="personal-introduce">
  10. <div style="margin-left: 10px">
  11. <span class="name">{{ userNum.userName }}</span>
  12. <span class="sex-icon"></span>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="user-follow">
  18. {{ userNum.attention }}
  19. <icon-star />
  20. <span class="follow-num">关注</span>
  21. {{ userNum.fans }}
  22. <icon-heart />
  23. <span class="follow-num">粉丝</span>
  24. {{ userNum.article }}
  25. <icon-select-all />
  26. <span class="follow-num">文章</span>
  27. </div>
  28. <div class="user-follow">个人简介:{{userSelfIntroduce}} </div>
  29. </div>
  30. </a-layout-header>
  31. <a-layout style="margin: 24px 180px">
  32. <a-layout-sider :resize-directions="['right']">
  33. <a-layout style="height: 100%; text-align: left; padding-left: 20px; background-color: #c4c4c4;">
  34. <a-layout-content style="height: 20%">
  35. <h3>CeTide等级</h3>
  36. </a-layout-content>
  37. <a-layout-content style="height: 20%">
  38. <h3>个人成就</h3>
  39. </a-layout-content>
  40. <a-layout-content style="height: 60%">
  41. <h3>个人动态</h3>
  42. </a-layout-content>
  43. </a-layout>
  44. </a-layout-sider>
  45. <a-layout-content class="content">
  46. <h3>用户中心</h3>
  47. </a-layout-content>
  48. </a-layout>
  49. <a-layout-footer>Footer</a-layout-footer>
  50. </a-layout>
  51. </div>
  52. </template>
  53. <script setup>
  54. import { ref } from "vue";
  55. import avatar from '../assets/userbg.png'
  56. const userSelfIntroduce = ref("这个人很懒,什么都没有留下");
  57. // const userSelfSex = ref("male");
  58. const userNum = ref({
  59. userImg : avatar,
  60. // userImg :'../assets/userbg.jpg',
  61. userName: "我是小丑",
  62. attention: 0,
  63. fans: 0,
  64. article: 0
  65. })
  66. </script>
  67. <style lang="scss" scoped>
  68. #userCenter {
  69. background: url("../assets/image.png") no-repeat bottom center / 100% 100%;
  70. }
  71. .header {
  72. font-family: "Satisfy", cursive;
  73. margin: 5% 100px 2% 100px;
  74. height: 20vh;
  75. background: url("../assets/back.png") no-repeat center / 100% 100%;
  76. }
  77. .personal-introduce {
  78. display: flex;
  79. justify-content: center;
  80. align-items: flex-end;
  81. margin-top: 10px;
  82. text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.31);
  83. .name {
  84. line-height: 29px;
  85. font-size: 26px;
  86. }
  87. .sex-icon {
  88. display: inline-block;
  89. width: 16px;
  90. height: 16px;
  91. margin: 0px 8px;
  92. margin-bottom: 4px;
  93. background: url(../assets/user-images/sex-icon.png) no-repeat center;
  94. background-size: contain;
  95. border-radius: 50%;
  96. }
  97. .level-icon {
  98. display: inline-block;
  99. width: 16px;
  100. height: 16px;
  101. margin-bottom: 4px;
  102. background: url(../assets/user-images/leval-icon.png) no-repeat center;
  103. background-size: contain;
  104. border-radius: 50%;
  105. }
  106. }
  107. .user-introduce {
  108. display: flex;
  109. justify-items: left;
  110. padding: 10px;
  111. }
  112. .user-img {
  113. border-radius: 50%;
  114. margin-left: 20px;
  115. }
  116. .user-follow{
  117. margin-left: 30px;
  118. font-size: 16px;
  119. display: flex;
  120. justify-items: left;
  121. }
  122. .follow-num{
  123. font-size: 16px;
  124. padding-right: 20px;
  125. }
  126. .content{
  127. margin-left: 70px;
  128. background-color: #c4c4c4;
  129. }
  130. </style>

就先这个样子吧。

那么,前端先把基础架子搭起来这样也就差不多了,后面我们就根据后端的开发来整前端,(这次就不面向前端编程了,来试试面向后端编程),后端初始化启动!

后端初始化:

现在开始后端开发,打开idea新建Spring项目

1.springboot项目优先创建,并且引入其起步依赖(根据要求添加必须依赖)

这里就先选这三个依赖吧(之后要用的依赖再加吧,(这里我就不用lombok了,偶尔跳一个版本问题也挺麻烦的))

目前的项目结构就是这样了,(项目最好不要放在带有中文目录的文件夹下,无论前后端)

2.查看pom文件

然后我们看看pom.xml文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.0.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>org.example</groupId>
  12. <artifactId>cetide-net</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>cetide-net</name>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>commons-codec</groupId>
  21. <artifactId>commons-codec</artifactId>
  22. <version>1.14</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.commons</groupId>
  26. <artifactId>commons-lang3</artifactId>
  27. <version>3.10</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>druid-spring-boot-starter</artifactId>
  32. <version>1.1.23</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.github.pagehelper</groupId>
  36. <artifactId>pagehelper-spring-boot-starter</artifactId>
  37. <version>1.2.13</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.mybatis.spring.boot</groupId>
  45. <artifactId>mybatis-spring-boot-starter</artifactId>
  46. <version>2.1.3</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <scope>test</scope>
  57. <exclusions>
  58. <exclusion>
  59. <groupId>org.junit.vintage</groupId>
  60. <artifactId>junit-vintage-engine</artifactId>
  61. </exclusion>
  62. </exclusions>
  63. </dependency>
  64. </dependencies>
  65. </project>

这里我没有用上面Spring项目的高版本(感觉低版本容易适配一些,大家可以试试创建新版本的Spring项目,或者就用这代码改造pom文件用较低版本的,感觉都可)

3.三层架构和application.yml配置数据库等等信息

先把三层架构搭建好:
创建controller,service,dao三个包

再创建放置实体类的包model,model包下还有三个包dto,entity,vo

这里给不熟悉的或者不太熟悉的兄弟们解释一下dto,entity和vo

  • Entity:它的主要作用是映射数据库中的记录,使得程序能够以面向对象的方式操作数据库数据。Entity中的每个字段通常直接对应数据库中的一个列。
  • (作为后端系统的核心数据结构,Entity贯穿于整个应用的持久层。它不仅用于数据的CRUD操作,还可能包含业务逻辑方法。)
  • DTO:DTO专注于数据的传输和业务逻辑的实现。它不直接对应数据库结构,而是根据业务需求封装数据。DTO主要用于在不同层级或服务间传递数据,降低系统的耦合度。
  • VO:VO主要关注于数据的展示。它的结构设计是为了便于前端页面的显示需求,因此VO的字段通常与用户界面的元素相对应。VO可以视为UI层的数据模型,用于封装应该展现给用户的数据。

先这样吧,然后点开resources包下的application.properties,然后把这个文件删了(hhhh)

在resources包下新建一个文件applilcation.yml

有小叶子表示就ok了

然后我们编写application.yml(这里先写一个初始版,后面再加)

  1. spring:
  2. application:
  3. name: cetide-net
  4. datasource:
  5. url: jdbc:mysql://localhost:3306/db?serverTimezone=GMT%2B8
  6. username: root
  7. password: 1234
  8. #数据库连接
  9. druid:
  10. stat-view-servlet:
  11. enabled: true
  12. url-pattern: /druid/*
  13. login-password: druid
  14. login-username: druid
  15. allow:
  16. deny:
  17. #Druid数据库连接池的监控配置,用于开启Druid的StatViewServlet
  18. jackson:
  19. deserialization:
  20. fail-on-unknown-properties: false #表示在反序列化时,如果遇到未知属性,不会抛出异常,而是忽略该属性。
  21. default-property-inclusion: non_null #表示在序列化时,只有非空属性才会被包含在JSON中。
  22. server:
  23. port: 1949
  24. mybatis:
  25. mapper-locations: classpath:org/example/cetidenet/dao/*.xml
  26. #MyBatis的配置文件,用于指定Mapper XML文件的位置

这里的配置文件主要还是连接一下数据库,配了一下端口号,然后加上了一些小配置

那么现在来测试一下目前的配置能不能用吧:

在controller下创建一个UserController文件

在UserController文件下写一个处理gei请求的方法,然后直接返回字符串

编写完成,回到CetideNetApplication启动类,右击启动!

很好,没有报错,那我们到浏览器中试试

输入 http://localhost:1949/user(注意端口号,根据大家自己的端口号输入(如果没有指定,默认为8080))

也能成功显示出来,那么看来是没问题了,开始下一步

4.使用Swagger规范设计和管理API接口(引入Swagger依赖)

使用后端开发感觉这个Swagger还是很有必要的(其实个人感觉postman更好用一点点,但是Swagger还是方便)

注意:这里使用knife4j对于我项目中的Spring版本是可以使用Swagger的,但最新版的几个Spring项目有可能是不适用的,如果遵循下面的步骤一步步搭建依旧无法出现页面,那么可以试试1.调低Spring版本或者调整knife4j的版本,又或者使用其他的Swagger搭建方法(网上还有其他很多Swagger的版本和使用方法)

使用步骤:(之前的文章有过使用这个的详细教程)

 1.导入knife4j的maven坐标

添加依赖

  1. <!-- knife4j-->
  2. <dependency>
  3. <groupId>com.github.xiaoymin</groupId>
  4. <artifactId>knife4j-spring-boot-starter</artifactId>
  5. <version>3.0.2</version>
  6. </dependency>
2.配置类中加入knife4j的相关配置

创建config包并创建WebConfiguration类

WebConfiguration继承WebMvcConfigurationSupport

在配置类中加入knife4j的相关配置然后配置静态资源映射,否则接口文档页面无法访问。(别忘了加上@Configuration)注意要扫描的包指定好,不然无法扫描到

直接看代码

  1. package org.example.cetidenet.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
  5. import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
  6. import springfox.documentation.builders.ApiInfoBuilder;
  7. import springfox.documentation.builders.PathSelectors;
  8. import springfox.documentation.builders.RequestHandlerSelectors;
  9. import springfox.documentation.service.ApiInfo;
  10. import springfox.documentation.spi.DocumentationType;
  11. import springfox.documentation.spring.web.plugins.Docket;
  12. @Configuration
  13. public class WebConfiguration extends WebMvcConfigurationSupport {
  14. @Bean
  15. public Docket docket(){
  16. ApiInfo apiInfo = new ApiInfoBuilder()
  17. .title("CeTide-Net接口文档")
  18. .version("1.0")
  19. .description("描述")
  20. .build();
  21. Docket docket = new Docket(DocumentationType.SWAGGER_2)
  22. .apiInfo(apiInfo)
  23. .select()
  24. //指定生成接口需要扫描的包
  25. .apis(RequestHandlerSelectors.basePackage("org.example.cetidenet.controller"))
  26. .paths(PathSelectors.any())
  27. .build();
  28. return docket;
  29. }
  30. protected void addResourceHandlers(ResourceHandlerRegistry registry) {
  31. registry.addResourceHandler("/doc.html").addResourceLocations("classpath:/META-INF/resources/");
  32. registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
  33. }
  34. }
3.启动项目,查看是否成功

此时可以访问一下localhost:1949/doc.html#/home

显示成功了,那么就可以通过Swagger的进行接口测试了

5.添加工具类:

1.定义统一结果封装类:

(因为要统一结果输出样式,这边写了一个结果封装类)

  1. package org.example.cetidenet.model.entity;
  2. /**
  3. * 统一响应结果封装类
  4. */
  5. public class Result<R> implements Serializable{
  6. private Integer code;//1 成功 , 0 失败
  7. private String msg; //提示信息
  8. private R data; //数据 data
  9. public Result() {
  10. }
  11. public Result(Integer code, String msg, R data) {
  12. this.code = code;
  13. this.msg = msg;
  14. this.data = data;
  15. }
  16. public Integer getCode() {
  17. return code;
  18. }
  19. public void setCode(Integer code) {
  20. this.code = code;
  21. }
  22. public String getMsg() {
  23. return msg;
  24. }
  25. public void setMsg(String msg) {
  26. this.msg = msg;
  27. }
  28. public Object getData() {
  29. return data;
  30. }
  31. public void setData(R data) {
  32. this.data = data;
  33. }
  34. public static <R> Result<R> success(R data) {
  35. Result<R> r = new Result<R>();
  36. r.code = 1;
  37. r.msg = "success";
  38. r.data = data;
  39. return r;
  40. }
  41. public static <R> Result<R> success() {
  42. Result<R> r = new Result<R>();
  43. r.code = 1;
  44. r.msg = "success";
  45. r.data = null;
  46. return r;
  47. }
  48. public static <R> Result<R> error(String msg) {
  49. Result<R> r = new Result<R>();
  50. r.code = 0;
  51. r.msg = msg;
  52. r.data = null;
  53. return r;
  54. }
  55. @Override
  56. public String toString() {
  57. return "Result{" +
  58. "code=" + code +
  59. ", msg='" + msg + '\'' +
  60. ", data=" + data +
  61. '}';
  62. }
  63. }
2.解决跨域问题:(这个问题很常见)

下面,我来详细介绍一下所谓的跨域问题和多种解决方法

来一个面试题:

介绍一下跨域问题,以及SpringBoot如何解决跨域问题?

回答:

跨域是指浏览器在执行网页中的Js代码时,由于浏览器的同源策略的一个限制,只能访问同源的资源,而要解决跨域问题就是要在不破坏同源策略的情况下,能够安全地实现数据共享和交互

(注意,这里说明跨域是在浏览器中才存在的,而前后端是不存在这种问题的,那么也就是说我们可以不通过浏览器,直接前后端进行请求发送就能解决这个问题)

下面,上方案!

常见的解决跨域问题的方法有:

1.CORS:这是一种在服务器后端解决跨域的方案(也就是SpringBoot中解决跨域问题)

如果一个网站要访问另一个网站的信息,浏览器首先会发送一个OPTIONS的一个请求,根据服务器返回的Access-Controller-Allow-Origin这样一个头的信息,来决定是否允许跨域访问,所以只需要在服务器端配置这样一个属性即可,并配置允许哪些域名支持跨区请求就好了

SpringBoot中提供了两种配置Access-Controller-Allow-Origin属性的一个方法来解决跨域问题

  • 1.通过这样一个注解@CrossOrigin(origins=“http://localhost:8080”)注解指定允许哪些origins允许跨域
  • 2.使用WebMvcConfigurer接口来重写addCorsMappings这样一个方法来配置允许跨域的请求源

(这么说,好像有一点点抽象,但是面试这么回答应该也就没问题了)

对于这个项目的话就直接一些,创建utils包,并创建CORSConfig类文件即可

  1. package org.example.cetidenet.utils;
  2. import org.springframework.context.annotation.Configuration;
  3. import org.springframework.web.servlet.config.annotation.CorsRegistry;
  4. import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
  5. @Configuration
  6. public class CORSConfig implements WebMvcConfigurer {
  7. public void addCorsMappings(CorsRegistry registry) {
  8. // 设置允许跨域的路径
  9. registry.addMapping("/**")
  10. // 设置允许跨域请求的域名
  11. .allowedOriginPatterns("*")
  12. // 是否允许cookie
  13. .allowCredentials(true)
  14. // 设置允许的请求方式
  15. .allowedMethods("GET", "POST", "DELETE", "PUT")
  16. // 设置允许的header属性
  17. .allowedHeaders("*")
  18. // 跨域允许时间
  19. .maxAge(3600);
  20. }
  21. }
  22. 方案二:
  23. import org.springframework.context.annotation.Bean;
  24. import org.springframework.context.annotation.Configuration;
  25. import org.springframework.web.cors.CorsConfiguration;
  26. import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
  27. import org.springframework.web.filter.CorsFilter;
  28. @Configuration
  29. public class CORSConfig {
  30. // 当前跨域请求最大有效时长。这里默认1天
  31. private static final long MAX_AGE = 24 * 60 * 60;
  32. @Bean
  33. public CorsFilter corsFilter() {
  34. UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
  35. CorsConfiguration corsConfiguration = new CorsConfiguration();
  36. corsConfiguration.addAllowedOrigin("*"); // 1 设置访问源地址
  37. corsConfiguration.addAllowedHeader("*"); // 2 设置访问源请求头
  38. corsConfiguration.addAllowedMethod("*"); // 3 设置访问源请求方法
  39. corsConfiguration.setMaxAge(MAX_AGE);
  40. source.registerCorsConfiguration("/**", corsConfiguration); // 4 对接口配置跨域设置
  41. return new CorsFilter(source);
  42. }
  43. }

加上代码,问题就解决啦。

咳咳,我们还是顺便讲一下其他的解决方法:

2.Nginx反向代理技术

这里就以我们写的前端为例子吧,

1.点开request.js

呐,就是这个位置,这里URL是直接写的http://localhost:1949,也是这样导致在浏览器上访问后端造成了跨域问题,这边既然不能直接访问后端,我们就去访问前端看看。

将代码改成

const URL = '/api'

这是一种省略的写法,实际上是http://localhost:8080/api(因为我前端没有专门设置端口号,所以端口号为8080)

在request.js改完之后,点开vue.config.js文件中编写方向代理

加上proxy这一块的代码就可以了

  1. const { defineConfig } = require("@vue/cli-service");
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. server: {
  5. proxy: {
  6. "/api": {
  7. target: "http://localhost:1949",
  8. changeOrigin: true,
  9. rewrite: (path) => path.replace(/^\/api/, ""),
  10. },
  11. },
  12. },
  13. });

3.jsonp(现在用的很少了,存在一些限制和安全考虑,就不演示使用方法了)

(前后端的跨域问题找一个方案解决,这里我就把前端的跨域问题的解决代码给注释了,选择使用后端的解决方案)

3.使用ThreadLocalUtil存储登录用户信息

在utils下创建ThreadLocalUtil类:

提供相关代码如下:

  1. package org.example.cetidenet.utils;
  2. /**
  3. * ThreadLocal 工具类
  4. */
  5. @SuppressWarnings("all")
  6. public class ThreadLocalUtil {
  7. //提供ThreadLocal对象,
  8. private static final ThreadLocal THREAD_LOCAL = new ThreadLocal();
  9. //根据键获取值
  10. public static <T> T get(){
  11. return (T) THREAD_LOCAL.get();
  12. }
  13. //存储键值对
  14. public static void set(Object value){
  15. THREAD_LOCAL.set(value);
  16. }
  17. //清除ThreadLocal 防止内存泄漏
  18. public static void remove(){
  19. THREAD_LOCAL.remove();
  20. }
  21. }

这边其实还可以添加一些其他的工具类,比如md5加密,jwt什么的

4.使用JWT令牌,创建JwtUtil类

第一步:引入依赖

  1. <!--java-jwt坐标-->
  2. <dependency>
  3. <groupId>com.auth0</groupId>
  4. <artifactId>java-jwt</artifactId>
  5. <version>4.4.0</version>
  6. </dependency>

第二步编写代码

上代码:

  1. package org.example.cetidenet.utils;
  2. import com.auth0.jwt.JWT;
  3. import com.auth0.jwt.algorithms.Algorithm;
  4. import java.util.Date;
  5. import java.util.Map;
  6. public class JwtUtil {
  7. private static final String KEY = "itheima";
  8. //接收业务数据,生成token并返回
  9. public static String genToken(Map<String, Object> claims) {
  10. return JWT.create()
  11. .withClaim("claims", claims)
  12. .withExpiresAt(new Date(System.currentTimeMillis() + 1000 * 60 * 60 ))
  13. .sign(Algorithm.HMAC256(KEY));
  14. }
  15. //接收token,验证token,并返回业务数据
  16. public static Map<String, Object> parseToken(String token) {
  17. return JWT.require(Algorithm.HMAC256(KEY))
  18. .build()
  19. .verify(token)
  20. .getClaim("claims")
  21. .asMap();
  22. }
  23. }

好了,这些初始工作也做的差不多了,现在开始后端设计,先来用户模块吧,先设计一下数据库这一块,我觉着这块可以先问问ai的意见然后再自己补充设计,就很有效率

6.设计用户表

设计数据表

genderENUM('M', 'F', 'O')性别(男性、女性、其他)

好家伙,性别还知道加一个其他

感觉很全面+很有效率(危机感+1)

这边来后端连接一下数据库:

选择MySQL数据库

输入密码之后就可以连接成功了(如果出现没连接成功的可以查查问题,或者询问一下)

放一手用户表代码(其中还有几组初始数据)

  1. -- 创建数据库
  2. CREATE DATABASE cetide_db;
  3. -- 使用创建的数据库
  4. USE cetide_db;
  5. -- 创建用户表
  6. CREATE TABLE user (
  7. id INT AUTO_INCREMENT PRIMARY KEY,
  8. username VARCHAR(50) UNIQUE,
  9. email VARCHAR(100) UNIQUE,
  10. password VARCHAR(255),
  11. full_name VARCHAR(100),
  12. avatar VARCHAR(255),
  13. bio TEXT,
  14. birth_date DATE,
  15. gender ENUM('M', 'F', 'O'),
  16. phone VARCHAR(20),
  17. country VARCHAR(100),
  18. address VARCHAR(255),
  19. created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  20. updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  21. );
  22. -- 创建唯一索引
  23. CREATE UNIQUE INDEX idx_username ON user(username);
  24. CREATE UNIQUE INDEX idx_email ON user(email);
  25. -- 插入常规用户信息
  26. INSERT INTO user (username, email, password, full_name, avatar, bio, birth_date, gender, phone, country, address)
  27. VALUES ('john_doe', 'john.doe@example.com', 'hashed_password', 'John Doe', 'https://example.com/avatar/john_doe.jpg', 'Hello, I\'m John Doe.', '1990-05-15', 'M', '+1 (123) 456-7890', 'USA', '123 Main St, Anytown, USA');
  28. -- 插入企业用户信息
  29. INSERT INTO user (username, email, password, full_name, avatar, bio, phone, country, address)
  30. VALUES ('acme_corp', 'contact@acmecorp.com', 'hashed_password', 'Acme Corporation', 'https://example.com/avatar/acme_corp.jpg', 'Welcome to Acme Corporation.', '+1 (800) 555-1234', 'USA', '456 Business Blvd, Corporate City, USA');
  31. -- 插入VIP用户信息
  32. INSERT INTO user (username, email, password, full_name, avatar, bio, birth_date, gender, phone, country, address)
  33. VALUES ('vip_customer', 'vip@example.com', 'hashed_password', 'VIP Customer', 'https://example.com/avatar/vip_customer.jpg', 'I\'m a VIP customer.', '1985-03-20', 'O', '+1 (555) 123-4567', 'Canada', '789 VIP St, Elite Town, Canada');
  34. -- 插入普通用户信息
  35. INSERT INTO user (username, email, password, full_name, avatar, bio, birth_date, gender, phone, country, address)
  36. VALUES ('jane_smith', 'jane.smith@example.com', 'hashed_password', 'Jane Smith', 'https://example.com/avatar/jane_smith.jpg', 'Nice to meet you!', '1988-11-30', 'F', '+44 20 1234 5678', 'UK', '456 Park Ave, London, UK');

放入直接运行就好了

数据库表结构好了就可以

开始设计实体类了

在Entity包下创建User类

根据数据库设计就好了(照着填充就是了(这里我改了创建时间和更新时间两个列的名字))

然后getter和setter,tostring方法填充(其实这里还是可以添加很多细节的,emmmm,后面开发接口的时候再一并说吧)

7.用户模块后端接口开发

下面来开发一下用户接口,先完成一下登录注册的接口吧。

分析一下,登录接口从前端向后端发的数据有哪些,登录好像只有账号和密码,那就设计一个DTO包含账号密码

加上getter和setter方法之后也就ok了,下面到UserController类中编写代码

前端我们规定的发起请求的路径是/user/login,那么后端编写代码即可

@RequestBody一定不要忘了加上

  1. @PostMapping("/user")
  2. public Result<User> login(@RequestBody UserLoginDTO userLoginDTO){
  3. Result<User> result = userService.login(userLoginDTO);
  4. return result;

然后直接调用userService的方法就OK了,这里尽量不要把逻辑处理的步骤加载controller类方法上,

现在在service包下创建UserService接口

并在service包下创建impl包,impl包下创建UserServiceImpl实现UserService,并且加上@Service注解

都到这一步了,就顺便把持久层解决,在dao包下创建UserMapper接口,并加上@Mapper注解

OK,现在回到UserController类中,注入UserService

  1. @Autowired
  2. private UserService userService;

在UserService中创建方法login,并在UserServiceImpl中实现

现在开始编写逻辑处理部分,

STOP!这里我觉着有必要加上一个参数校验,虽然前端代码中一般也会进行参数校验,比如看账号密码是否是处于5~16位这种条件,但是有些时候,会有些人不通过前端直接访问接口,所以前后端都进行一次参数校验比较好

对于参数校验这一块,可以手动if判断,但每次都写一遍或者封装成方法到处用,感觉还是太过麻烦了,这边建议可以使用SpringValidation进行参数校验

使用SpringValidation进行参数校验:

使用方法:

1.引入依赖

  1. <!-- springvalidation-->
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-validation</artifactId>
  5. </dependency>

2.在参数前面加上@Pattern注解

在UserLoginDTO这里加上注解(这里就规定都是5~16位的账号密码吧)

  1. package org.example.cetidenet.model.dto;
  2. import javax.validation.constraints.Pattern;
  3. public class UserLoginDTO {
  4. @Pattern(regexp = "^\\S{5,16}$")
  5. private String userName;
  6. @Pattern (regexp = "^\\S{5,16}$")
  7. private String password;
  8. public String getUserName() {
  9. return userName;
  10. }
  11. public void setUserName(String userName) {
  12. this.userName = userName;
  13. }
  14. public String getPassword() {
  15. return password;
  16. }
  17. public void setPassword(String password) {
  18. this.password = password;
  19. }
  20. }

3.在Controller类上添加@Validated注解

@PostMapping("/user")
public Result<User> login(@RequestBody @Validated UserLoginDTO userLoginDTO){
    Result<User> result = userService.login(userLoginDTO);
    return result;

在login方法参数中添加@Validated

好,差不多就先这样,然后我们回到UserServiceImpl类中编写登录接口,

先确定一下执行逻辑

这里已经先判断了其长度了,便不用过多判断什么,

用户登录有多种情况,要么是用户根本不存在要么是用户的密码错误,或者......

就先这两情况

先根据用户名查询一波数据库看看是否存在该用户,存在则比对密码是否正确,如果正确则登录成功,如果错误则返回密码错误,如果用户不存在则返回错误信息,用户不存在。

先写一个简单的吧,(这个太简陋了,其实有很多可以补充的点,比如密码进行Md5加密,加盐处理,大小写的转换,应对高并发的redis处理,等等等)

这里因为之前插入的数据密码是没有加密的,所以这里暂时不加密,后面再加上去

这是其中调用的一个Mapper的方法,这里就用注解的方式写了(毕竟是比较简单的一个)

来试试接口测试

先加上了两个注解

然后我们打开Swagger

此时接口文档就有文字描述了,点击该接口测试看看

测试了一下,很成功

那么意味着登录接口开发成功了。

那么就再写一个用户注册接口开发吧:

先写一个UserRegisterDTO

这里我感觉有了登录的DTO也可以用这个DTO,没必要多写一个。。。。

controller这块都差不多

然后就是逻辑处理这一块了,就不细说了,先看代码

  1. @Override
  2. public Result<User> register(UserRegisterDTO userRegisterDTO) {
  3. String username = userRegisterDTO.getUserName();
  4. String password = userRegisterDTO.getPassword();
  5. String email = userRegisterDTO.getEmail();
  6. //注册要求:email不重复,username不重复
  7. //用户名次要,先看看email是否重复
  8. User user = userMapper.findByEmail(email);
  9. //判断人物是否存在
  10. if(user!=null){
  11. return Result.error("该邮箱已被注册");
  12. }
  13. //user为空,可以注册
  14. user = userMapper.findByUsername(username);
  15. if(user!=null){
  16. return Result.error("该用户名重复");
  17. }
  18. //user为空,用户名不重复
  19. String salt = password + "ceTide";
  20. String md5Pwd = DigestUtils.md5Hex(salt.getBytes()).toUpperCase();
  21. boolean isRegister = userMapper.addUser(username,md5Pwd,email);
  22. if(isRegister){
  23. return Result.success();
  24. }
  25. return Result.error("注册失败");
  26. }

然后进行接口测试

就成功了,

再次注册就会触发异常,okok,差不多登录注册这一块的内容就到这里吧

下面继续把用户功能完善一下

回到前端的用户界面

添加三个组件按钮,用来编辑用户信息,就先从编辑资料开始吧

这里再造一个页面来编辑资料感觉好麻烦,就用抽屉组件做一个编辑资料的吧

就用这个折叠的,此处就不展示代码了,后面一起展示(感觉比较简单)

然后修改折叠页面的内容定义数据结构进行页面就好了

这边加了一个嵌套的抽屉

不过要是只进行文件操作也不必这么麻烦,这里可以加一个查看之前照片并保存的功能

然后再给个人中心加上一个页头就好了

就先这样吧

  1. <template>
  2. <div id="userCenter">
  3. <a-layout style="height: 100vh">
  4. <a-layout-header>
  5. <a-page-header title="用户中心" subtitle="CeTide网" @click="returnPage"/>
  6. <div class="header">
  7. <div class="user-introduce">
  8. <img
  9. :src="userNum.userImg"
  10. width="70px"
  11. height="70px"
  12. class="user-img"
  13. />
  14. <div>
  15. <div class="personal-introduce">
  16. <div style="margin-left: 10px">
  17. <span class="name">{{ userNum.userName }}</span>
  18. <span class="sex-icon"></span>
  19. </div>
  20. <a-space class="btn">
  21. <a-button type="dashed" shape="round" @click="handleClick"
  22. ><icon-pen-fill />编辑资料</a-button
  23. >
  24. <a-button type="dashed" shape="round"
  25. ><icon-settings />设置</a-button
  26. >
  27. <a-button type="dashed" shape="round"
  28. ><icon-list />文章管理</a-button
  29. >
  30. </a-space>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="user-follow">
  35. {{ userNum.attention }}
  36. <icon-star />
  37. <span class="follow-num">关注</span>
  38. {{ userNum.fans }}
  39. <icon-heart />
  40. <span class="follow-num">粉丝</span>
  41. {{ userNum.article }}
  42. <icon-select-all />
  43. <span class="follow-num">文章</span>
  44. </div>
  45. <div class="user-follow">个人简介:{{ userSelfIntroduce }}</div>
  46. </div>
  47. </a-layout-header>
  48. <a-layout style="margin: 24px 180px">
  49. <a-layout-sider :resize-directions="['right']">
  50. <a-layout
  51. style="
  52. height: 100%;
  53. text-align: left;
  54. padding-left: 20px;
  55. background-color: #c4c4c4;
  56. "
  57. >
  58. <a-layout-content style="height: 20%">
  59. <h3>CeTide等级</h3>
  60. </a-layout-content>
  61. <a-layout-content style="height: 20%">
  62. <h3>个人成就</h3>
  63. </a-layout-content>
  64. <a-layout-content style="height: 60%">
  65. <h3>个人动态</h3>
  66. </a-layout-content>
  67. </a-layout>
  68. </a-layout-sider>
  69. <a-layout-content class="content">
  70. <h3>用户中心</h3>
  71. </a-layout-content>
  72. </a-layout>
  73. <a-layout-footer>Footer</a-layout-footer>
  74. </a-layout>
  75. <!-- 编辑个人信息的抽屉 -->
  76. <a-drawer
  77. :visible="visible"
  78. :width="500"
  79. @ok="handleOk"
  80. @cancel="handleCancel"
  81. unmountOnClose
  82. >
  83. <template #title> 编辑个人信息 </template>
  84. <div :style="{ marginBottom: '20px' }">
  85. <div >
  86. <img :src="userNum.userImg" width="70px" height="70px" class="user-img"/>
  87. <a-button type="primary" @click="handleNestedClick" style="float: right;margin-top: 20px"
  88. >更换头像</a-button
  89. >
  90. </div>
  91. <a-divider />
  92. <div> 用户名:<a-input :style="{width:'320px'}" allow-clear v-model="userNum.userName"/></div>
  93. <a-divider />
  94. <div> 性别:<a-input :style="{width:'320px'}" v-model="userNum.userSex" /></div>
  95. <a-divider />
  96. <div> 电话:<a-input :style="{width:'320px'}" v-model="userNum.phone"/></div>
  97. <a-divider />
  98. <div> 生日:<a-input :style="{width:'320px'}" v-model="userNum.birthday" /></div>
  99. <a-divider />
  100. <div> 城市:<a-input :style="{width:'320px'}" v-model="userNum.county" /></div>
  101. <a-divider />
  102. <div> 住址:<a-input :style="{width:'320px'}" v-model="userNum.address" /></div>
  103. <a-divider />
  104. <div> CeTide网ID:<a-input :style="{width:'320px'}" v-model="userNum.id" disabled/></div>
  105. <a-divider />
  106. <div> 个人简介: <a-textarea v-model="userSelfIntroduce" allow-clear style="height: 100px"/></div>
  107. </div>
  108. </a-drawer>
  109. <a-drawer
  110. :visible="nestedVisible"
  111. @ok="handleNestedOk"
  112. @cancel="handleNestedCancel"
  113. unmountOnClose
  114. >
  115. <template #title> 文件操作 </template>
  116. <a-space direction="vertical" :style="{ width: '100%' }" class="picture">
  117. <a-upload
  118. action="/"
  119. :fileList="file ? [file] : []"
  120. :show-file-list="false"
  121. @change="onChange"
  122. @progress="onProgress"
  123. >
  124. <template #upload-button>
  125. <div
  126. :class="`arco-upload-list-item${
  127. file && file.status === 'error' ? ' arco-upload-list-item-error' : ''
  128. }`"
  129. >
  130. <div
  131. class="arco-upload-list-picture custom-upload-avatar"
  132. v-if="file && file.url"
  133. >
  134. <img :src="file.url" />
  135. <div class="arco-upload-list-picture-mask">
  136. <IconEdit />
  137. </div>
  138. <a-progress
  139. v-if="file.status === 'uploading' && file.percent < 100"
  140. :percent="file.percent"
  141. type="circle"
  142. size="mini"
  143. :style="{
  144. position: 'absolute',
  145. left: '50%',
  146. top: '50%',
  147. transform: 'translateX(-50%) translateY(-50%)',
  148. }"
  149. />
  150. </div>
  151. <div class="arco-upload-picture-card" v-else>
  152. <div class="arco-upload-picture-card-text">
  153. <IconPlus />
  154. <div style="margin-top: 10px; font-weight: 600">Upload</div>
  155. </div>
  156. </div>
  157. </div>
  158. </template>
  159. </a-upload>
  160. </a-space>
  161. </a-drawer>
  162. </div>
  163. </template>
  164. <script setup>
  165. import { ref } from "vue";
  166. import avatar from "../assets/userbg.png";
  167. import { useRouter } from "vue-router";
  168. const router = useRouter();
  169. const userSelfIntroduce = ref("这个人很懒,什么都没有留下");
  170. // const userSelfSex = ref("male");
  171. const userNum = ref({
  172. id: "007",
  173. county: "四川",
  174. address: "成都",
  175. phone: "12345678910",
  176. birthday: "1999-09-09",
  177. userSex: "女",
  178. email: "123@qq.com",
  179. userImg: avatar,
  180. // userImg :'../assets/userbg.jpg',
  181. userName: "我是小丑",
  182. attention: 0,
  183. fans: 0,
  184. article: 0,
  185. });
  186. //抽屉显示隐藏
  187. const visible = ref(false);
  188. const nestedVisible = ref(false);
  189. const handleClick = () => {
  190. visible.value = true;
  191. };
  192. const handleOk = () => {
  193. visible.value = false;
  194. };
  195. const handleCancel = () => {
  196. visible.value = false;
  197. };
  198. const handleNestedClick = () => {
  199. nestedVisible.value = true;
  200. };
  201. const handleNestedOk = () => {
  202. nestedVisible.value = false;
  203. };
  204. const handleNestedCancel = () => {
  205. nestedVisible.value = false;
  206. };
  207. //返回方法
  208. const returnPage = () =>{
  209. router.push('/')
  210. }
  211. </script>
  212. <style lang="scss" scoped>
  213. #userCenter {
  214. background: url("../assets/image.png") no-repeat bottom center / 100% 100%;
  215. }
  216. .header {
  217. font-family: "Satisfy", cursive;
  218. margin: 2% 100px;
  219. height: 20vh;
  220. background: url("../assets/back.png") no-repeat center / 100% 100%;
  221. position: relative;
  222. }
  223. .personal-introduce {
  224. display: flex;
  225. justify-content: center;
  226. align-items: flex-end;
  227. margin-top: 10px;
  228. text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.31);
  229. .name {
  230. line-height: 29px;
  231. font-size: 26px;
  232. }
  233. .sex-icon {
  234. display: inline-block;
  235. width: 16px;
  236. height: 16px;
  237. margin: 0px 8px;
  238. margin-bottom: 4px;
  239. background: url(../assets/user-images/sex-icon.png) no-repeat center;
  240. background-size: contain;
  241. border-radius: 50%;
  242. }
  243. .level-icon {
  244. display: inline-block;
  245. width: 16px;
  246. height: 16px;
  247. margin-bottom: 4px;
  248. background: url(../assets/user-images/leval-icon.png) no-repeat center;
  249. background-size: contain;
  250. border-radius: 50%;
  251. }
  252. }
  253. .user-introduce {
  254. display: flex;
  255. justify-items: left;
  256. padding: 10px;
  257. }
  258. .user-img {
  259. border-radius: 50%;
  260. margin-left: 20px;
  261. }
  262. .user-follow {
  263. margin-left: 30px;
  264. font-size: 16px;
  265. display: flex;
  266. justify-items: left;
  267. }
  268. .follow-num {
  269. font-size: 16px;
  270. padding-right: 20px;
  271. }
  272. .content {
  273. margin-left: 70px;
  274. background-color: #c4c4c4;
  275. }
  276. .btn {
  277. position: absolute;
  278. right: 40px;
  279. }
  280. </style>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/641737
推荐阅读
相关标签
  

闽ICP备14008679号