#BOOT

使用MockMvc进行springboot调试(SpringbootTest)

测试前关闭web项目。springboot启动程序WebApplication.class笔者本地自定了端口SpringBootTest.WebEnvironment.DEFINED_PORT代码如下:importcom.xxx.web.WebApplication;importorg.junit.Before;imp...

springboot拦截json后缀的请求,返回json数据

需求:请求list.json返回以下数据{"jsonResult":{"code":200,"message":"查询成功","nextUrl":null,"data":[{"pageNo":0,"id":1,"type":"personal","avatarUrl":null,"source":null,"login...

springboot Thymeleaf中格式化jsr310新日期时间类(LocalDateTime,LocalDate)--thymeleaf格式化LocalDateTime,LocalDate等JDK8新时间类

依赖maven包<dependency><groupId>org.thymeleaf.extras</groupId><artifactId>thymeleaf-extras-java8time</artifactId></dependency>&...

jdk8环境下sprngboot/springmvc中JSR310新日期/时间类LocalDateTime显示效果带T

如图所示:  日期时间类中带了一个T,以上这种格式LocalDateTime格式化的时候默认日期时间格式:ISO.DATE_TIME(按笔者目前的知识理解是ISO8601规范中的日期时间格式化)想要把他转换成我们日常使用(习惯)的日期格式,只要在字段上面添加@JsonFormat(pattern="...

springboot整合websocket后运行测试类报错:javax.websocket.server.ServerContainer not available

转载自:https://blog.csdn.net/fggdgh/article/details/87185555springboot项目添加websocket依赖后运行测试类报如下错误:org.springframework.beans.factory.BeanCreationException:Errorcreat...

SpringBoot 2.x中为tomcat配置ssl(https)支持

参考来源:https://www.cnblogs.com/imfjj/p/9058443.htmlhttps://blog.csdn.net/jackymvc/article/details/81077885配置证书:keytool-genkeypair-aliastomcat-keyalgRSA-keystoreto...

将springboot安装成windows服务启动。

下载WindowsServiceWrapper  本文下载了winsw-2.3.0-bin.exe。新建一个目录aiplatformService在目录里面新建一个aiplatformService.xml,同时把winsw-2.3.0-bin.exe重命名陈aiplatformService.ex...

Spring Boot启动的报错 Stopping service [Tomcat]

我遇到的问题是项目中使用java_websocket的WebSocketClient,由于性能要求,需要再Controller直接继承WebSocketClient,在项目启动过程中调试进入springboot框架,大概意思说onClose被识别为内部方法,造循环依赖等问题,具体没去深究,相关错误关键字如下Eagerl...

SpringMVC,SpringBoot上传文件简洁代码

@RequestMapping("/updateAvatar.html")publicStringupdateHeadUrl(MultipartFileavatar,Modelmodel,HttpSessionsession)throwsIOException{//文件类型限制String[]allowedType={...

spring boot configuration annotation processor not found in classpath

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-configuration-processor</artifactId><optional>...

Springboot测试类之@RunWith注解

@runWith注解作用:--@RunWith就是一个运行器--@RunWith(JUnit4.class)就是指用JUnit4来运行--@RunWith(SpringJUnit4ClassRunner.class),让测试运行于Spring测试环境,以便在测试开始的时候自动创建Spring的应用上下文--@RunWi...

bootstrap4 常用样式类名 (供自己参考)

1、容器和网格系统容器container固定宽度,不同尺寸固定了不同的宽度container-fluid100%宽度栅格系统cal-xs//<768pxcal-sm//>=768pxcal-md//>=992pxcal-lg//>=1200px2、字体颜色及背景颜色字体text-muted柔和t...

angular6 中使用bootstrap

npminstalljquery  --savenpminstallpopper.js  --savenpminstallbootstrap   --save  然后在node_modules文件夹中可以找到你安装的文件接下来开始...
代码星球 ·2020-04-16

springboot使用vue打包过的页面资源

 (一)webpack打包如果在vue基于webpack的,build打包后得到的是如下的资源文件:  webstorm中提示如下:   这个大致的意思就是这边的文件需要放在http服务器上访问,如果直接打开的话,无法生效。道理也很简单,基本上这里面引的路径都...

springboot设置访问端口和项目路径

 找到,application.properties,添加如下配置即可server.port=8088server.servlet.context-path=/...
首页上一页...8586878889...下一页尾页