Spring 的autowired大坑

---恢复内容开始---

@autowired

自动注入大坑

这几天在spring的配置上花了许多时间....

首先appcontextconfig.xml

配置还是根据官方得来没有错的

>>>>>>>>>>>>>>>>>>>>>如下>>>>>>>>>>>>>>>>>>

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

>>>>>>>>>>>>>>>>>>>>>>>>>

>>>>>>>>>>>

>>>>

>>

>

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:mybatis="http://mybatis.org/schema/mybatis-spring"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://mybatis.org/schema/mybatis-spring http://mybatis.org/schema/mybatis-spring.xsd
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">

<!--配置spring自动扫描的包-->

<context:component-scan base-package="z.talent"/>

<context:property-placeholder location="classpath:db.properties"/>

<!-- 配置数据源 ,dbcp -->

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${mysql.driver}"/>
<property name="url" value="${mysql.userurl}"/>
<property name="username" value="${mysql.username}"/>
<property name="password" value="${mysql.password}"/>
<property name="maxActive" value="30"/>
<property name="maxIdle" value="5"/>
</bean>

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 注入数据库连接池 -->
<property name="dataSource" ref="dataSource" />
<!-- 配置MyBaties全局配置文件:mybatis-config.xml -->
<property name="configLocation" value="classpath:mybatisconfig.xml" />
<!-- 扫描entity包 使用别名 -->

<!-- 扫描sql配置文件:mapper需要的xml文件 -->
<property name="mapperLocations" value="classpath:mapper/*.xml" />
</bean>

<!-- 4.配置扫描Dao接口包,动态实现Dao接口,注入到spring容器中 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 注入sqlSessionFactory -->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<!-- 给出需要扫描Dao接口包 -->
<property name="basePackage" value="z.talent.mapper" />
</bean>
<bean id="transactionManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!-- 注入数据库连接池 -->
<property name="dataSource" ref="dataSource" />
</bean>

<!-- 配置基于注解的声明式事务 -->
<tx:annotation-driven transaction-manager="transactionManager" />
<!-- 遍历所有的类 官方解释 写上这句会自动注册 指定包的class(@Component, @Repository, @Service, @Controller, @RestController,
@ControllerAdvice, and @Configuration)为bean -->

<!-- 加载框架mvc注释驱动 我自己说的 反正这两句少了就是不行,不信你试试-->
<mvc:annotation-driven />
<!-- 静态资源 image javascirpt css 不设置这个url访问image/*.png 肯定返回404 因为没写这个给controller处理里面并没有处理这个当然返回404-->
<mvc:resources location="/WEB-INF/resource/" mapping="/resource/**"
cache-period="864000" />

<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
<!-- 静态资源访问处理 -->
<mvc:default-servlet-handler/>
</beans>

>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

>>>>>>>>>>>>>>>>>>>>>

>>>>>>>>>>>>>

>>>>>>>>
>>>>>>..

>>>>>

>>>

>>

>

紧接着呢

》》》

开始写dao层

首先我要说明下其实交给spring管理了,就没有必要自己实现dao接口了

mybatis的mapper就相当于dao层了,,,

接着都是spring的事了

然后嘞就是啥呢

然后开始注入service层

@autowired的mapper

service层自动注入了mapper

那么使用service的地方也要@autowired 这个service

autowired 不能断,要一直应用下去

不然会爆空指针错误  这里指的是 mapper

哈哈哈哈哈哈哈

期间呢还发生了需要故事

如果报了 logger 啥的错误  type different class类似字眼记得

把tomcat下bin的commed log 。jar删了

xxiixixixixixihahahaha

哈哈哈哈

原文地址:https://www.cnblogs.com/zhangtalent/p/8450085.html

时间: 2024-11-02 14:56:22

Spring 的autowired大坑的相关文章

Spring 注释 @Autowired 和@Resource 的区别

Spring 注释 @Autowired 和@Resource 的区别 一. @Autowired和@Resource都可以用来装配bean,都可以写在字段上,或者方法上. 二. @Autowired属于Spring的:@Resource为JSR-250标准的注释,属于J2EE的. 三. @Autowired默认按类型装配,默认情况下必须要求依赖对象必须存在,如果要允许null值,可以设置它的required属性为false,例如:@Autowired(required=false) ,如果我们

Spring 梳理 - @Autowired VS @Resource

Autowired @Autowired顾名思义,就是自动装配,其作用是为了消除代码Java代码里面的getter/setter与bean属性中的property.当然,getter看个人需求,如果私有属性需要对外提供的话,应当予以保留. 这里@Autowired注解的意思就是,当Spring发现@Autowired注解时,将自动在代码上下文中找到和其匹配(默认是类型匹配)的Bean,并自动注入到相应的地方去. @Autowired(required = false) public class

Spring中 @Autowired标签与 @Resource标签 的区别

Spring不但支持自己定义的@Autowired注解,还支持由JSR-250规范定义的几个注解,如:@Resource. @PostConstruct及@PreDestroy. 1. @Autowired    @Autowired是Spring 提供的,需导入    Package:org.springframework.beans.factory.annotation.Autowired;    只按照byType 注入.2. @Resource    @Resource默认按 byNam

Spring中 @Autowired标签与 @Resource标签 的区别(转)

Spring不但支持自己定义的@Autowired注解,还支持由JSR-250规范定义的几个注解,如:@Resource. @PostConstruct及@PreDestroy. 1. @Autowired    @Autowired是Spring 提供的,需导入    Package:org.springframework.beans.factory.annotation.Autowired;    只按照byType 注入.2. @Resource    @Resource默认按 byNam

Spring中@Autowired注解、@Resource注解的区别(转)

标签: Autowired Resource Spring(3)  Spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource.@PostConstruct以及@PreDestroy. @Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入,而@Resource默认按 byName自动注入罢了.@Resource有两个属性是比较重要的,分是name和type,Spring将@Reso

Spring @Resource, @Autowired and @Inject 注入

Overview I’ve been asked several times to explain the difference between injecting Spring beans with ‘@Resource’, ‘@Autowired’, and ‘@Inject’. While I received a few opinions from colleagues and read a couple of posts on this topic I didn’t feel like

spring之Autowired小坑

spring引进注解之后大大简化了xml的配置,上手spring变得更加简单起来.本人也是刚刚上手spring不久,开始一头雾水到能够依葫芦画瓢花了一个月,到现在公司需要的基本的spring配置都能独自搞定了,可见上手spring还是比较容易的.但是须知spring这么牛逼的框架应该不会是一两个月就能hold住的玩意,今天又踩了两个坑,记录一下. 公司的service调用采取的是远程调用方式,各个部门把各自对外提供的service用192.168.0.1:4080/services/XXX这样的

Spring中@Autowired注解、@Resource注解的区别

Spring不但支持自己定义的@Autowired注解,还支持几个由JSR-250规范定义的注解,它们分别是@Resource.@PostConstruct以及@PreDestroy. @Resource的作用相当于@Autowired,只不过@Autowired按byType自动注入,而@Resource默认按 byName自动注入罢了.@Resource有两个属性是比较重要的,分是name和type,Spring将@Resource注解的name属性解析为bean的名字,而type属性则解析

spring @resource @ Autowired

Spring中什么时候用@Resource,什么时候用@service 当你需要定义某个类为一个bean,则在这个类的类名前一行使用@Service("XXX"),就相当于讲这个类定义为一个bean,bean名称为XXX; 当需要在某个类中定义一个属性,并且该属性是一个已存在的bean,要为该属性赋值或注入时在该属性上一行使用@Resource(name="xxx"),相当于为该属性注入一个名称为xxx的bean. =========================