码迷,mamicode.com
首页 >  
搜索关键字:active controller    ( 14966个结果
spring启动时通过指定profile加载不同的bean
有时候我们有多个环境,开发环境、测试环境、生产环境,每个环境都有不同的配置信息 如何用一套代码,在不同环境上都能运行,spring的profile就是用来解决这个问题 比如想着测试环境加载一个配置类,那么这个类可以加上这个注解 @Component @Profile(value="test") pu ...
分类:编程语言   时间:2021-04-29 11:40:00    阅读次数:0
无序点位的轮播
<template> <div class="box"> <div class="swipers"> <template v-for="(item, index) in lists" > <div class="item" v-if="index==active" :key="'0'+index" ...
分类:其他好文   时间:2021-04-26 13:50:48    阅读次数:0
Spring注解大全
Spring注解 @Controller(表示SpringMVC的Controller)、@RestController(Rest风格控制器,还可以若要返回JSON不需要@ResponseBody了)、@Service(业务服务层)、@Autowired(如果允许null值,required=fal ...
分类:编程语言   时间:2021-04-22 16:17:58    阅读次数:0
21. 用30个类手写V2.0版本之MVC实现
MVC顶层设计 一、请求调用 public class GPDispatcherServlet extends HttpServlet { //保存Controller中URL和Method的对应关系 private List<GPHandlerMapping> handlerMappings = ...
分类:Web程序   时间:2021-04-22 15:16:33    阅读次数:0
自动华键盘使用
from pynput.keyboard import Controller, Key, Listener # 监听按压 def on_press(key): try: print("正在按压:", format(key.char)) except AttributeError: print("正在 ...
分类:其他好文   时间:2021-04-21 12:38:44    阅读次数:0
.Net 5.0 项目数据库连接字符串
1 1.MSSQLSERVER 2 3 "ConnectionStrings": { 4 5 "DefaultConnection": "Server=127.0.0.1;Database=HXCDataPermission_test;user id=sa;password=sasa;Multipl ...
分类:数据库   时间:2021-04-19 15:53:01    阅读次数:0
PbootCMS 常用 if 判断
1. 导航高亮 > {pboot:if('[nav:scode]'=='{sort:tcode}')}class="active"{/pboot:if} //用于非首页 例: {pboot:nav} <li {pboot:if('[nav:scode]'=='{sort:tcode}')}class ...
分类:其他好文   时间:2021-04-15 12:25:16    阅读次数:0
Spring从IOC、DI、Aop到Mvc实现思路
配置阶段 配置web.xml文件 DispatcherServlet 设置init-param configLocation=classpath:application.properties 设置url-pattern /* 配置Annotation @Controller、@Service、@Re ...
分类:编程语言   时间:2021-04-15 12:17:07    阅读次数:0
CSS——伪类、定位—第六天
一、伪类 1、: link{} (未访问链接的状态) 2、: hover{} (鼠标放上去的一个状态) 3、: active{} (鼠标点击上去的一个状态) 4、: visited{} (访问之后的一个链接状态) 注意:hover{} 用于所有标签,其它三个只用于 a 标签 二、定位 1、相对定位( ...
分类:Web程序   时间:2021-04-14 12:38:02    阅读次数:0
Spring Mvc篇之全局异常处理
一、全局异常处理之注解方式 主要用到的注解有2个 @ControllerAdvice 用在Controller类级别上,可看做是一个增强的Controller @ExceptionHandler 用到Controller中具体的方法上,表明这个方法处理的具体某个异常类型 我们一般在捕获到异常的时候, ...
分类:编程语言   时间:2021-04-14 12:09:04    阅读次数:0
14966条   上一页 1 ... 6 7 8 9 10 ... 1497 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!