1、自动配置好tomcat: 引入spring-boot-starter-web依赖会创建一个8080端口的内嵌Tomcat(可以通过application.yaml配置文件的server.port配置自定义端口[e.g: server.port=8888]) 2、自动配置好SpringMVC、We ...
分类:
其他好文 时间:
2021-06-13 09:38:04
阅读次数:
0
Window启动命令:java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令:nohup java -jar jeecg-boot-module-system-2.0.0.jar >catalina.out 2>&1 & 关掉项目 ...
分类:
编程语言 时间:
2021-06-13 09:27:48
阅读次数:
0
nginx下载地址 http://nginx.org/en/download.html Window启动命令: java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令: nohup java -jar jeecg-boot-mod ...
分类:
系统相关 时间:
2021-06-13 09:26:41
阅读次数:
0
1、引入依赖 <!--邮件--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2、配置地址 sprin ...
分类:
编程语言 时间:
2021-06-11 18:37:22
阅读次数:
0
一、添加maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 二、applicati ...
分类:
编程语言 时间:
2021-06-11 18:20:30
阅读次数:
0
冲刺任务:完成app首页、第二页面和特殊情况的页面布局 activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res ...
分类:
移动开发 时间:
2021-06-11 18:12:07
阅读次数:
0
冲刺任务:完成用户注册功能和数据库类 RegisterActivity.java package com.example.helloworld; import android.content.Intent; import android.os.Bundle; import android.text. ...
分类:
移动开发 时间:
2021-06-11 18:08:57
阅读次数:
0
前言 现在越来越多的人应聘工作时都得先刷个几十百来道题,不刷题感觉都过不了面试。 无论是前后端、移动开发,好像都得刷题,这么多人通过刷题过了面试,说明刷题对于找工作还是有帮助的。 不过这其中有一个问题:很多人虽然为了找工作刷了题,但是却不理解公司为何要采取这样的方式来考察求职者。还有很多人为此愤愤不 ...
分类:
移动开发 时间:
2021-06-11 18:02:26
阅读次数:
0
前言 日常开发中,缓存是解决数据库压力的一种方案,通常用于频繁查询的数据,例如新闻中的热点新闻,本文记录springboot中使用cache缓存。 官方文档介绍:https://docs.spring.io/spring-boot/docs/2.1.0.RELEASE/reference/htmls ...
分类:
编程语言 时间:
2021-06-10 18:50:45
阅读次数:
0
Springboot项目启动多个服务时,需要用到Run Dashboard 第一种方法:修改workspace.xml文件 1.找到项目中的workspace.xml文件:项目 》.idea 》workspace.xml 2.找到文件中 <component name="RunDashboard"> ...
分类:
其他好文 时间:
2021-06-10 18:38:54
阅读次数:
0