Springboot
IT小白-北极冰雪
学以致用,深入浅出
展开
-
Springboot AOP导致@Autowired注入失败问题
1、使用AOP做日志记录,pom.xml添加依赖。<!-- AOP--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>原创 2021-06-10 14:47:45 · 1374 阅读 · 2 评论 -
MAVEN 项目Springboot 打包可执行war
1、修改 pom.xml <groupId>com.example</groupId> <artifactId>nms</artifactId> <version>0.0.1-SNAPSHOT</version> <packaging>war</packaging>//新增此行 <name>nms</name> <description>Demo proj原创 2021-05-17 17:00:16 · 257 阅读 · 0 评论 -
SpringBoot在普通类中获取service
SpringUtil.javaimport org.springframework.beans.BeansException;import org.springframework.beans.factory.config.BeanDefinition;import org.springframework.beans.factory.support.BeanDefinitionBuilder;import org.springframework.beans.factory.support.Bean.原创 2020-12-04 15:21:58 · 3092 阅读 · 0 评论 -
Springboot Controller 获取httpSession对应的websocket Session
上一篇文章中写了使用httpSessionId存储Websocket Session,下面在SpringBoot中在Contrller类获取前端请求的HttpSession,从而获得对应的websocket Session。Controller类import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.HttpStatus;import org.springfram原创 2020-12-03 11:21:50 · 3240 阅读 · 2 评论 -
Springboot中websocket获取httpsession存储webSocketSession
WebsocketConfig.javaimport org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.web.socket.server.standard.ServerEndpointExporter;import javax.servlet.http.HttpSession;im.原创 2020-12-03 11:01:48 · 4136 阅读 · 3 评论 -
IDEA创建Springboot web项目
1.打开IDEA,Create New Project。2.选择Spring Initializr,点击next。3.填写基本信息,点击next。4.选择web,Spring web,点击next.5.填写工程名称,点击finish。6.在Application,java文件同级创建controller包,新建BaseController.java文件。(我的工程名是nms_master,上面创建的默认工程名demo)。package com.example原创 2020-09-21 11:35:32 · 210 阅读 · 0 评论