摘要: SpringMVC 是轻量级、典型的MVC框架,与Struts2相比,SpringMVC运行更快,注解开发更高效灵活。 ​ 跳转有两种:(1) forward (2) redirect forward跳转,一次请求,地址栏不变,redirect跳转多次请求,地址栏改变 # 1. Controller 阅读全文
posted @ 2021-06-21 19:53 neoQVQ 阅读(206) 评论(0) 推荐(0)
摘要: nginx 出现413 Request Entity Too Large问题的解决方法 解决方法如下: 1.打开nginx配置文件 nginx.conf, 路径一般是:/etc/nginx/nginx.conf。 2.在http段中加入 client_max_body_size 20m; 20m为允 阅读全文
posted @ 2021-06-21 12:44 neoQVQ 阅读(127) 评论(0) 推荐(0)