springboot
霜喧秋
这个作者很懒,什么都没留下…
展开
-
Redis实现信息缓存的方法
redis实现缓存中间件的简单使用方法原创 2023-02-11 10:45:15 · 345 阅读 · 1 评论 -
springboot整合mybatis
注意namespace, resultMap="DingDingUser"2、添加mybatis的依赖。5、对应文件添加对应的注解。原创 2022-09-22 21:32:19 · 135 阅读 · 0 评论 -
springboot之thymeleaf表达式
1、添加thymeleaf框架2、添加依赖 <!--springboot框架集成thymeleaf依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> &原创 2022-04-23 16:08:08 · 528 阅读 · 0 评论 -
springboot使用logbac日志工具
1、添加依赖<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId></dependency>2、在resources目录下添加logback-spring.xml文件<?xml version="1.0" encoding="UTF-8"?><!-- 日志级别从低到高分为原创 2022-04-22 15:21:37 · 691 阅读 · 0 评论 -
springboot指定字符编码方式
一、1、创建业务类package com.bjpowernode.springboot.servlet;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.Htt原创 2022-04-21 08:28:29 · 1483 阅读 · 0 评论 -
springboot框架使用过滤器的方式
一1、设置过滤器制定请求的路径package com.bjpowernode.springboot.filter;import javax.servlet.*;import javax.servlet.annotation.WebFilter;import javax.xml.ws.WebFault;import java.io.IOException;@WebFilter(urlPatterns = "/myfilter")public class MyFilter impleme原创 2022-04-21 08:12:24 · 255 阅读 · 0 评论 -
springboot矿建下使用Servlet-1
注解的方式---》定义servlet方法package com.bjpowernode.springboot.servlet;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servl原创 2022-04-20 17:06:29 · 101 阅读 · 0 评论 -
springboot的拦截器
1、定义拦截器方法package com.bjpowernode.springboot.interceptor;import com.bjpowernode.springboot.model.User;import org.springframework.web.servlet.HandlerInterceptor;import org.springframework.web.servlet.ModelAndView;import javax.servlet.http.HttpServlet原创 2022-04-20 16:25:57 · 881 阅读 · 0 评论 -
springb创建非web应用的方式(二)
同上创建service业务层之后在启动类中,实现CommandLineRunner 接口之后重写run方法 、、、、 通过@Autowired注入业务层的实现类,之后在run方法中调用业务方法@SpringBootApplicationpublic class Application implements CommandLineRunner { @Autowired private StudentService studentService; public..原创 2022-04-19 16:05:55 · 215 阅读 · 0 评论 -
springboot创建非web应用的方式(一)
直接创建不选择web下的springweb直接创建之后在启动类的同级下创建项目service和实现类通过@Service交个spring容器, public static void main(String[] args) { ConfigurableApplicationContext application = SpringApplication.run(Application.class, args); StudentService studentSer原创 2022-04-20 17:04:33 · 717 阅读 · 0 评论 -
springboot中的springmvc注解
指定访问方式@RequestMapping(value = "/student",method = RequestMethod.GET)多种访问方式@GetMapping(value = "/select") //-----》查询数据@PostMapping(value = "/insert")//-----》新增数据@DeleteMapping(value = "/delete")//-----》删除数据@PutMapping(value = "/update")//--原创 2022-04-17 10:27:31 · 320 阅读 · 0 评论 -
sprinboot集成mybatis
1·、首先加入依赖 <!--MySQL 的驱动依赖--> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency> <!--MyBatis 整合 SpringBoo原创 2022-04-16 15:26:31 · 196 阅读 · 0 评论 -
springboot的配置文件
核心配置文件application.propertiesapplication.yml application.yaml都可以作为配置文件,同时存在时只用.properties多环境的核心配置文件一application-test.prperties 必须以application- 开头。多环境配置文件时需要进行环境切换,只需要在主核心配置文件中用spring.profiles.active=test来指定利用test环境下的配置文件二yml yaml..原创 2022-04-13 17:31:07 · 107 阅读 · 0 评论