摘要: package com.duxiang.backgroundmanagement.entity; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; 1.mybatis impo 阅读全文
posted @ 2024-05-15 17:03 XiangdxDu 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 在vue.config.js中const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer:{ port:9090 阅读全文
posted @ 2024-05-09 12:34 XiangdxDu 阅读(4) 评论(0) 推荐(0) 编辑
摘要: SqlSugar .Net ORM 5.X 官网 、文档、教程 - SqlSugar 5x - .NET果糖网 (donet5.com) 阅读全文
posted @ 2024-04-30 09:29 XiangdxDu 阅读(93) 评论(0) 推荐(0) 编辑
摘要: // 在vue.config.js中 const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, devServer: { port 阅读全文
posted @ 2024-04-29 18:57 XiangdxDu 阅读(40) 评论(0) 推荐(0) 编辑
摘要: public static com.aliyun.dysmsapi20170525.Client createClient(String accessKeyId, String accessKeySecret) throws Exception { // 创建短信服务客户端并返回 // 创建一个配置 阅读全文
posted @ 2024-04-28 12:43 XiangdxDu 阅读(32) 评论(0) 推荐(0) 编辑
摘要: @PostMapping("/uploadExercise") public ResponseEntity<String> uploadExercise(@RequestParam MultipartFile file, @RequestParam("exercise_id") int exerci 阅读全文
posted @ 2024-04-23 14:10 XiangdxDu 阅读(8) 评论(0) 推荐(0) 编辑
摘要: @GetMapping("/exportScore") public void exportScore(HttpServletResponse response) throws Exception { // 从数据库查询出所有的数据 List<Score> list = scoreService.g 阅读全文
posted @ 2024-04-23 14:07 XiangdxDu 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package com.duxiang.backgroundmanagement.common;/** * 返回消息 */public class Result { private static final String SUCCESS = "0"; private static final Str 阅读全文
posted @ 2024-04-22 12:26 XiangdxDu 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 开始事务的代码可以使用 Spring 的事务管理器来实现。具体步骤如下: 1. 在 Spring 配置文件中配置事务管理器和事务通知器: ```<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataS 阅读全文
posted @ 2024-04-22 10:10 XiangdxDu 阅读(415) 评论(0) 推荐(0) 编辑
摘要: 1、认识ThymeleafSpringBoot主要支持Thymeleaf、Freemarker、Mustache、 Groovy Templates等模板引擎。Thymeleaf可以轻易地与SpringMVC等Web框架进行集成。Thymeleaf语法并不会破坏文档的结构,所以Thymeleaf模板 阅读全文
posted @ 2024-04-22 09:54 XiangdxDu 阅读(152) 评论(0) 推荐(0) 编辑