springmvc
无风无雨也无晴
这个作者很懒,什么都没留下…
展开
-
springMVC 几种页面跳转方式
原文地址:https://blog.csdn.net/wang1171405487/article/details/81026512转载 2019-02-25 14:29:39 · 1448 阅读 · 0 评论 -
mvc项目定时任务5分钟取数据库数据保存到map,实现缓存防止频繁交互sql
第一:public class ManagerListener implements ServletContextListener {public void contextDestroyed(ServletContextEvent arg0) {}public void contextInitialized(ServletContextEvent sce) { ApplicationC...原创 2019-07-04 13:26:15 · 851 阅读 · 0 评论 -
基于hibernate继承servletContext实现定时查询数据库保存到map,实现缓存防止频繁的交互数据库
第一:定时每5分钟查询数据库保存到map缓存public class SysConfigThread extends HttpServlet implements Runnable{private Logger logger = LoggerFactory.getLogger(SysConfigThread.class);public static Date lastTime = null...原创 2019-07-04 13:19:06 · 159 阅读 · 0 评论 -
@RequestParam的使用
来源:http://825635381.iteye.com/blog/2196911来源于:https://blog.csdn.net/MaxElephant/article/details/78544637@RequestParam:一、 基本使用,获取提交的参数后端代码:@RequestMapping(“testRequestParam”)public String filesUp...转载 2019-04-08 10:59:35 · 562 阅读 · 0 评论 -
applicationContext.xml配置详解
applicationContext.xml配置详解<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/contex...原创 2019-04-10 11:34:27 · 1555 阅读 · 0 评论 -
generatorConfig.xml配置
generatorConfig.xml配置<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/myba...原创 2019-04-10 11:26:11 · 704 阅读 · 0 评论 -
logback.xml配置详解
logback.xml配置详解<?xml version="1.0" encoding="UTF-8"?> <!-- 从高到地低 OFF 、 FATAL 、 ERROR 、 WARN 、 INFO 、 DEBUG 、 TRACE 、 ALL --> <!-- 日志输出规则 根据当前ROOT 级别,日志输出时,级别高于root默认的级别时 会输出 -...原创 2019-04-10 11:20:18 · 771 阅读 · 0 评论 -
web.xml配置
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.jc...原创 2019-04-10 11:05:05 · 112 阅读 · 0 评论 -
maven 搭建mvc项目
https://www.cnblogs.com/xiaoxiaoSMILE/p/6950542.html转载 2019-03-01 14:47:08 · 163 阅读 · 0 评论 -
反射获取类的成员变量和protected方法
public class PrivateCar {// private 成员变量 使用传统的调用方式只能在本类中调用private String color;//protected方法 使用传统的调用方式只能在子类和本包中访问protected void drive() {System.out.println(“哈哈哈哈哈的颜色为”+color);}}public class P...原创 2019-07-11 13:34:59 · 4231 阅读 · 0 评论