码迷,mamicode.com
首页 > 其他好文 > 详细

04 图书管理系统(SSM+LayUi)

时间:2020-07-29 10:24:20      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:sch   expr   注解   系统   ble   package   source   pat   string   

整合spring

1、新建ClassInfo实体类

  • 根据数据库中的class_info表字段,在com.gychen.po里新建ClassInfo
package com.gychen.po;

import java.io.Serializable;

public class ClassInfo implements Serializable {

    private Integer id;
    private String name;
    private String remarks;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getRemarks() {
        return remarks;
    }

    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }
}

2、新建ClassInfoDao接口

  • 在com.gychen.po里新建ClassInfoDao接口
package com.gychen.dao;

import com.gychen.po.ClassInfo;
import java.util.List;

public interface ClassInfoDao {
    /**
     * 查询所有图书类型信息
     */
    List<ClassInfo> queryClassInfoAll();

}

3、新建ClassInfoService接口及其实现类

  • 在com.gychen.service中新建ClassInfoService
package com.gychen.service;

import com.gychen.po.ClassInfo;

import java.util.List;

public interface ClassInfoService {
    /**
     * 查询所有的图书类型信息
     */
    List<ClassInfo> queryClassInfoAll();
}

  • 在com.gychen.service中新建ClassInfoServiceImpl
package com.gychen.service;

import com.gychen.po.ClassInfo;

import java.util.List;

public class ClassInfoServiceImpl implements ClassInfoService {

    @Override
    public List<ClassInfo> queryClassInfoAll() {
        // 没有连接数据库,以打印控制台代替
        System.out.println("查询到了所有的图书类型.......");
        return null;
    }
}

4、配置spring相关配置文件

  • 在resources文件夹下新建spring.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"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">


    <!-- 开启注解扫描 处理service层和dao层 controller层不处理-->
    <context:component-scan base-package="com.gychen">
        <!-- 配置不扫描的 -->
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>



</beans>
  • 给ClassInfoServiceImpl中的类加上注解
package com.gychen.service;

import com.gychen.po.ClassInfo;
import org.springframework.stereotype.Service;

import java.util.List;

@Service("classInfoService")
public class ClassInfoServiceImpl implements ClassInfoService {

    @Override
    public List<ClassInfo> queryClassInfoAll() {
        // 没有连接数据库,以打印控制台代替
        System.out.println("查询到了所有的图书类型.......");
        return null;
    }
}

5、新建测试

  • 在com.gychen.demo里新建TestDemo类
package com.gychen.demo;

import com.gychen.service.ClassInfoService;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestDemo {

    @Test
    public void testSpring(){
        // 获取spring容器
        ClassPathXmlApplicationContext app =
                new ClassPathXmlApplicationContext("spring.xml");

        // 获取bean
        ClassInfoService infoService = (ClassInfoService) app.getBean("classInfoService");
        infoService.queryClassInfoAll();
    }
}

  • 点击测试得到打印结果,表明spring在本项目中可以正常工作,
    保证spring独立执行

04 图书管理系统(SSM+LayUi)

标签:sch   expr   注解   系统   ble   package   source   pat   string   

原文地址:https://www.cnblogs.com/nuister/p/13361176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!