码迷,mamicode.com
首页 >  
搜索关键字:spring mvc modelandview map model    ( 101751个结果
docker的使用
1 查看下载的镜像:docker images 2 查看正在运行的容器:docker ps 查看所有容器:docker ps -a 3 下载jdk: docker pull openjdk:8-jdk-alpine 4 删除镜像/容器: docker rmi imageID docker rm co ...
分类:其他好文   时间:2021-05-24 02:18:30    阅读次数:0
Redis01:linux中安装redis
NoSQL介绍 NoSQL数据库简介 技术发展 1、解决功能性问题:Java、Jsp、RDBMS、Tomcat、html、Linux、JDBC、SVN 2、解决扩展性功能:Struts、Spring、SpringMVC、Hibernate、Mybatis 3、解决性能的问题:NoSQL、Java线程 ...
分类:系统相关   时间:2021-05-24 02:14:01    阅读次数:0
第十一届山东省大学生程序设计竞赛(热身赛)
B.Willis and Fibonacci Sequence 题意: n的范围是10^9,f[i]是斐波那契数列,求f[i] / 2^n 的前n项和 思路:(打表)(精度) 打表,打表出前100项的答案,因为指数增长比斐波那契数列增长速度大得多,这个题的精度只有10^-6,最后发现第72项以后的答 ...
分类:其他好文   时间:2021-05-24 02:10:21    阅读次数:0
spring启动后初始化某个方法
有时候我们想要在spring启动后就做一些初始化配置,或者启动一个常住线程,这个时候需要定义一个类,且实现ApplicationRunner接口 @Component public class ZKMasterClient implements ApplicationRunner{ private ...
分类:编程语言   时间:2021-05-24 02:02:16    阅读次数:0
spring boot自动装配
1、SpringBoot启动会加载大量的自动配置类 2、我们看我们需要的功能有没有在SpringBoot默认写好的自动配置类当中; 3、我们再来看这个自动配置类中到底配置了哪些组件;(只要我们要用的组件存在在其中,我们就不需要再手动配置了) 4、给容器中自动配置类添加组件的时候,会从properti ...
分类:编程语言   时间:2021-05-24 01:58:36    阅读次数:0
SringBoot配置
SringBoot配置 springboot所有配置 1、配置文件 spring boot使用一个全局的配置文件,配置文件名称是固定的。配置文件的作用就是修改spring boot自动配置的默认值,因为在底层所有配置都是配置好的,这个文件只是用来修改。 application.properties ...
分类:其他好文   时间:2021-05-24 01:56:49    阅读次数:0
处理webflux 项目 增加 content-path
需求: 增加路由前缀 项目: 基于webflux 的 r2dbc 建立的 mqtt项目 解决方案: 一 # springboot 项目 # 版本 >=2.3.release spring: webflux: base-path: "/project-name" 解决方案: 二 server: ser ...
分类:Web程序   时间:2021-05-24 01:52:31    阅读次数:0
sentinel使用(结合gateway)
前 如果你想在Spring Cloud Gateway中使用Sentinel Starter,你需要添加Spring - Cloud -alibaba- Sentinel - Gateway依赖,并添加Spring - Cloud - Starter - Gateway依赖,让Spring Clou ...
分类:其他好文   时间:2021-05-24 01:48:53    阅读次数:0
C# 递归压缩图片
整理压缩代码 using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using Syste ...
分类:Windows程序   时间:2021-05-24 01:47:14    阅读次数:0
在IIS上部署ASP.NET MVC程序时使用虚拟目录的问题
1.使用虚拟目录是,后端中的重定向等该如何处理 string path = filterContext.HttpContext.Request.ApplicationPath; if (path == "/") { path = ""; } filterContext.Result = new Re ...
分类:Web程序   时间:2021-05-24 01:38:02    阅读次数:0
101751条   上一页 1 ... 49 50 51 52 53 ... 10176 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!