自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 vue + springboot 项目部署服务器(宝塔面板)

个人网站:域名还在备案 借鉴:https://blog.csdn.net/Lzy410992/article/details/115695616(宝塔安装,项目打包,域名申请) 修改配置(ip、端口) vue // vue.config.js module.exports = { // 配置跨域请求 devServer: { port: 80, //前端端口--随意,通过Nginx反向代理后都一样 //host: 'localhost', //主机地址

2021-10-02 10:08:36 4467

原创 vue+springboot跨域问题并实现登录拦截(初学)

vue开启跨域 在vue.config.js文件配置 module.exports = { // 配置跨域请求 devServer: { port: 8080, //前端端口 host: 'localhost', //主机地址 open: true, https: false, proxy: { '/api': { target: 'http://localhost:80/', ws: true, .

2021-06-28 13:01:34 575 1

原创 Spring+Spring MVC+MyBatis(ssm)详细配置

web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.or.

2021-06-13 13:13:16 119

原创 ajax,axios基本使用

ajax <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script> <script> $.get({ url:"", data :{参数名:参数值,key:value}, dataType:"json",//可有可无 success: function (data) { alert("成功"); //成功回调参数 //data.message 例子 },.

2021-06-13 11:50:43 119

原创 Canvas贪吃蛇小游戏

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>贪吃.

2021-06-10 11:26:17 306 1

原创 spring配置jdbc,事务处理

<?xml version="1.0" encoding="UTF8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.s

2021-03-14 17:36:04 89

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除