<context:annotation-config> 与<context-component-scan> 的作用 <context:annotation-config> 是用于激活那些已经在spring容器里注册过的bean(无论是通过xml的方式还是通过package sanning的方式)上面 ...
分类:
编程语言 时间:
2018-06-07 20:09:30
阅读次数:
171
package com.itmuch.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; impo... ...
分类:
编程语言 时间:
2018-06-05 23:24:02
阅读次数:
247
1.@Autowired 2.@Controller 3.@Service 4.@Response 5.@Bean 6.@Scope 7.@Value 8.@Component 9.@ResponseBody 10.@RequestMapping ...
分类:
其他好文 时间:
2018-06-01 21:35:16
阅读次数:
166
@Resource和@Autowired都是做bean的注入时使用,其实@Resource并不是Spring的注解,它的包是javax.annotation.Resource,需要导入,但是Spring支持该注解的注入。 1、共同点 两者都可以写在字段和setter方法上。两者如果都写在字段上,那么 ...
分类:
编程语言 时间:
2018-05-24 00:38:48
阅读次数:
184
@Resource默认按照名称方式进行bean匹配,@Autowired默认按照类型方式进行bean匹配@Resource(import javax.annotation.Resource;)是J2EE的注解,@Autowired(import org.springframework.beans.f ...
分类:
其他好文 时间:
2018-05-23 14:57:27
阅读次数:
191
24.spring配置dbcp并完成CRUD操作 1.准备jar包 2.编辑Product模型 1 package com.day02.ssm.spring.model; 2 3 public class Product{ 4 private Integer id; 5 private String ...
分类:
编程语言 时间:
2018-05-19 17:07:16
阅读次数:
242
1 MockMvc的使用 1.1 创建一个SpringBoot项目 项目脚手架 1.2 创建一个用户实体类 package cn.test.demo.base_demo.entity.po; import java.util.Date; /** * @author 王杨帅 * @create 201 ...
分类:
编程语言 时间:
2018-05-06 00:10:34
阅读次数:
383
1. 需求背景 需要对某个请求url进行拦截,模拟是否可以进入某一个接口,如果拦截需要返回数据false,别问我为何不用intercept拦截器。 2. web.xml 3. 自定义的Filter 要跳转的/xxx某某url ...
分类:
其他好文 时间:
2018-05-02 16:21:17
阅读次数:
200
一.前言 前面Activiti工作流的学习,说明了Activiti的基本应用,在我们开发中可以根据实际的业务参考Activiti的API去更好的理解以及巩固。我们实际的开发中我们基本上都使用spring框架进行开发,现在来说明一下Activiti工作流与spring集成,Activiti工作流与sp ...
分类:
编程语言 时间:
2018-04-30 19:44:28
阅读次数:
227