为什么会报空指针异常呢

为什么会报空指针异常呢

http://img1.sycdn.imooc.com//climg/5afbf83e0001e4ec14400477.jpg

http://img1.sycdn.imooc.com//climg/5afbf83e0001cc8e08920749.jpg

http://img1.sycdn.imooc.com//climg/5afbf83e0001e05d10190591.jpg

http://img1.sycdn.imooc.com//climg/5afbf83f0001747909370789.jpg

pom.xml

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.wyh</groupId>
  <artifactId>asperctJJ</artifactId>
  <version>1.0-SNAPSHOT</version>
  <packaging>war</packaging>

  <name>asperctJJ Maven Webapp</name>
  <!-- FIXME change it to the project's website -->
  <url>http://www.example.com</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.7</maven.compiler.source>
    <maven.compiler.target>1.7</maven.compiler.target>
  </properties>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-core</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-context</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-beans</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>
    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-expression</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>

    <dependency>
      <groupId>aopalliance</groupId>
      <artifactId>aopalliance</artifactId>
      <version>1.0</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aop</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>

    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.9</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-aspects</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>

    <dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-test</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>

  </dependencies>

  <build>
    <finalName>asperctJJ</finalName>
    <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
      <plugins>
        <plugin>
          <artifactId>maven-clean-plugin</artifactId>
          <version>3.0.0</version>
        </plugin>
        <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
        <plugin>
          <artifactId>maven-resources-plugin</artifactId>
          <version>3.0.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>3.7.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.20.1</version>
        </plugin>
        <plugin>
          <artifactId>maven-war-plugin</artifactId>
          <version>3.2.0</version>
        </plugin>
        <plugin>
          <artifactId>maven-install-plugin</artifactId>
          <version>2.5.2</version>
        </plugin>
        <plugin>
          <artifactId>maven-deploy-plugin</artifactId>
          <version>2.8.2</version>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

applicationContext.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:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">

       <!--开启aspectJ的自动代理-->
    <aop:aspectj-autoproxy/>

    <!--目标类-->
    <bean id="productDao" class="com.wyh.aspectJ.demo1.ProductDao"/>

    <!--定义切面-->
    <bean class="com.wyh.aspectJ.demo1.MyAspectAnno"/>
</beans>

Spring.demo1

package com.wyh.aspectJ.demo1;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import javax.annotation.Resource;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class SpringDemo1 {

    @Resource(name="productDao")
    private ProductDao productDao;

    @Test
    public void demo1(){
        productDao.update();
        productDao.delete();
        productDao.findOne();
        productDao.save();
    }
}

ProductDao

package com.wyh.aspectJ.demo1;

public class ProductDao  {

    public void save(){
        System.out.println("保存商品。。。");
    }

    public void update(){
        System.out.println("更新商品。。。");
    }

    public void delete(){
        System.out.println("删除商品。。");
    }

    public void findOne(){
        System.out.println("查询一个商品。");
    }

}

MyAspectAnno

package com.wyh.aspectJ.demo1;

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

//注解方式
//切面类
@Aspect
public class MyAspectAnno {
    @Before(value ="execution(* com.wyh.aspectJ.demo1.ProductDao.*(..))")
     public  void before(){
         System.out.println("前置通知");
     }
}


正在回答

登陆购买课程后可参与讨论,去登陆

4回答

我用你的代码替换老师代码相关的内容,是可以运行的,你看一下错误提示中发生空指针异常的SpringDemo1的19行是哪一行代码

http://img1.sycdn.imooc.com//climg/5afc05ee0001cf9814540497.jpg

祝学习愉快!

  • 我吖吖 提问者 #1
    就是我的测试类里的 demo1 他让我检查那里的代码 。。
    2018-05-16 18:27:20
  • 我吖吖 提问者 #2
    @Test public void demo1(){ 这是第十九行→ productDao.update(); productDao.delete(); productDao.findOne(); productDao.save(); }
    2018-05-16 18:27:57
  • 我吖吖 提问者 #3
    我发现只要是这个类型 都会报错 我第二个XML 来使用aspectJ也会报java.lang.NullPointerException 而且光标在我测试类调用的方法那里
    2018-05-16 18:42:49
看雪_0001 2018-05-17 17:38:52

你把19行删掉还会报错吗

  • 提问者 我吖吖 #1
    用了JDK 1.8就好了 谢谢帮助~
    2018-05-18 18:51:25
提问者 我吖吖 2018-05-16 20:22:20
  • 提问者 我吖吖 #1
    我用了Junit 4.9之后 这个光打印 可以打印了 但是 调用之前的那些方法还是不行
    2018-05-16 21:44:20
  • 好帮手慕珊 回复 提问者 我吖吖 #2
    你把JDK换成1.8试试
    2018-05-17 09:33:18
  • 看雪_0001 回复 提问者 我吖吖 #3
    用Junit 4.12
    2018-05-17 17:36:18
提问者 我吖吖 2018-05-16 18:30:26

http://img1.sycdn.imooc.com//climg/5afc082500013eb718370841.jpg这是报错详情 19行代码就是光标现在在的位置

  • 你把方法里的代码注释掉,就写个简单的输出语句,执行一下看看会是什么结果
    2018-05-16 20:12:18
  • 提问者 我吖吖 回复 好帮手慕珊 #2
    我在回复区 发截图了 老师
    2018-05-16 20:22:40
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
SSM主流框架入门与综合项目实战2018版
  • 参与学习           人
  • 提交作业       205    份
  • 解答问题       4317    个

Java中非常实用的SSM整合开发内容,从Spring开始,到MyBaits的进阶内容,再到SpringMVC的应用,最后是SSM整合开发案例,逐步深入,助你成长为一名Java工程师!

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师