学习资源网址 https://www.runoob.com/html/html-tutorial.html 待学习 1. 阿里云构建云服务器 2. Spring+SpringMVC+Mybatis框架整合 3. Spring+SpringMVC+Hibernate框架整合 4. Struts2+Sp ...
分类:
其他好文 时间:
2019-11-19 12:05:40
阅读次数:
57
web.xml SSMProject示例项目下载 SSMProject_jar包 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http:// ...
分类:
编程语言 时间:
2019-11-19 01:08:31
阅读次数:
90
在使用springmvc时,我们通常会定义类似这样的通用类与前端进行交互,以便于前端可以做一些统一的处理: public class Result<T> { public class Result<T> { private int ret; private int ret; private Stri ...
分类:
编程语言 时间:
2019-11-18 10:11:06
阅读次数:
114
testInterceptor @RequestMapping(value="testInterceptor") public String testInterceptor( ) { System.out.println("处理请求的方法....!"); return "success"; } My ...
分类:
编程语言 时间:
2019-11-18 00:08:11
阅读次数:
112
springmvc.xml <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLS ...
分类:
编程语言 时间:
2019-11-17 17:42:58
阅读次数:
98
Failed to read candidate component class:file错误分析和处理 org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate componen ...
分类:
编程语言 时间:
2019-11-17 15:06:03
阅读次数:
76
在运行搭建好的springmvc项目时,出现 org.springframework.beans.factory.BeanDefinitionStoreException: Failed to read candidate component class: 出现这个问题是spring版本与java版 ...
分类:
编程语言 时间:
2019-11-17 12:49:28
阅读次数:
71
作者:肥宅兜链接:https://www.cnblogs.com/doudouxiaoye/p/5693399.html 1.为什么使用Spring ? 方便解耦,简化开发;通过Spring提供的IoC容器,可以将对象之间的依赖关系交由Spring进行控制,避免硬编码所造成的过度程序耦合。 AOP编 ...
分类:
编程语言 时间:
2019-11-17 12:38:32
阅读次数:
69
近期用SSM框架写一个项目,登录模块需要生成验证码图片,我把相关的代码写好了之后传到 jsp ,但是图片不显示,查看控制台显示404,反复查询了一下代码并没有发现任何问题,代码如下: @Controller public class ValidateCodeController { private ...
分类:
编程语言 时间:
2019-11-17 10:24:40
阅读次数:
81
Spring MVC auto configuration Spring Boot 自动配置好了SpringMVC 以下是SpringBoot对SpringMVC的默认配置: ==(WebMvcAutoConfiguration)== Inclusion of and beans. 自动配置了Vie ...
分类:
编程语言 时间:
2019-11-17 10:20:30
阅读次数:
69