#VC

springMVC Aspect AOP 接口耗时统计

  在接口开发中,我们通常需要统计接口耗时,为后续接口性能做统计。在springMVC中可以用它的aop来记录日志。  1、在spring配置文件中开启AOP<!--***************支持aop****************--><aop:aspectj-autoproxyproxy-t...

springMVC之AOP

切面(Aepect):横切关注点(跨越应用程序多个模块的功能)被模块化的对象;通知(Advice):切面必须要完成的工作;目标(Target):被通知的对象;代理(Proxy):像目标对象应用通知之后创建的对象;连接点(Joinpoint):程序执行的某个特殊位置,如类某个方法调用前、调用后、方法抛出异常后等。连接点由...
代码星球 ·2020-08-09

springMVC之servlet-config.xml配置

<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns...

springMVC之applicationcontext.xml配置说明

<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns...

springMVC之web.xml配置

<?xmlversion="1.0"encoding="UTF-8"?><web-appxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns="http://java.sun.com/xml/ns/javaee"xmlns:web="ht...
代码星球 ·2020-08-09

SpringMVC自定义视图 Excel视图和PDF视图

1、Maven依赖引入POI<dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>3.11</version></dep...

springmvc中实现quartz定时任务

1、maven项目添加如下两个jar包,当然也需要相应的spring的Jar  <!--SpringQuartz定时器begin--><dependency><groupId>org.springframework</groupId><artifactId>s...

springMVC+mybatis 增删该操作后判断影响行数一直返回-2147482646

MyBatis发现更新和插入返回值一直为"-2147482646"的错误是由defaultExecutorType设置引起的,如果设置为BATCH,更新返回值就会丢失。mybatis官方的讨论列表,这句很关键:“IftheBATCHexecutorisinuse,theupdatecountsarebein...

springMVC+mybatis 进行单元测试时 main SqlSessionFactoryBean

今天终于写完的Dao层的操作,怀着无比激动的心情,进行单元测试,就在最后一个方法,对的就是最后一个方法,启动单元测试就会报以下错误:[2016-05-1118:25:01,691][WARN]mainBoneCPConfig-PleaseusesetIdleConnectionTestPeriodInMinutesin...

springMVC自定义注解实现用户行为验证

最近在进行项目开发的时候需要对接口做Session验证1、自定义一个注解@AuthCheckAnnotation@Documented@Target(ElementType.METHOD)@Inherited@Retention(RetentionPolicy.RUNTIME)public@interfaceAuthC...

MVC自定义视图规则

自定义规则:usingSystem.Web.Mvc;usingSystem.Configuration;namespaceResearch{publicclassViewConfig{publicstaticvoidRegisterView(){stringtemp=ConfigurationManager.AppSe...
代码星球 ·2020-08-09

VC6.0 突然打不开dsw 工程文件的解决方案

在vc编程中,经常遇到dsw工程文件无法打开,或者打开后看不到类和变量的问题。特别是把代码从一台电脑上copy到另一台电脑上以后,常常会碰到这种奇怪的问题。有时在编辑状态下也会发生成员变量或函数提示不能显示的问题。遇到这些情况,首先要检查一下进程中是否有没有关闭的vc进程“msdev.exe”,...

LINK : fatal error LNK1104: 无法打开文件“libboost_serialization-vc90-mt-gd-1_62.lib”

 boost安装:https://www.cnblogs.com/sea-stream/p/10205425.html 在vs中添加...

spring mvc随笔

一、SpringMvc学习笔记1、使用SpringMvc时需在web.xml文件中添加配置<servlet><servlet-name>springMVC</servlet-name><servlet-class>org.springframework.web.servl...
代码星球 ·2020-08-08

Springboot/SpringMvc 读取上传 xls 文件内容

/***读取上传xls内容返回*@paramfile*@return*/@RequestMapping(value="/read.xls")@ResponseBodypublicStringread(@RequestParam("file")MultipartFilefile){//判断上传的文件类型是不是图片intm...
首页上一页...3637383940...下一页尾页