国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

SSM框架整合

twohappy / 2959人閱讀

摘要:整合項(xiàng)目結(jié)構(gòu)導(dǎo)入版本號相關(guān)包相關(guān)包相關(guān)包相關(guān)包數(shù)據(jù)庫連接池集成標(biāo)準(zhǔn)標(biāo)簽庫日志相關(guān)包單元測試相關(guān)包里面為空開發(fā)環(huán)境下,日志級別設(shè)置

ssm整合項(xiàng)目結(jié)構(gòu)

Maven導(dǎo)入jar

pom.xml




    4.0.0

    cn.scitc
    Test
    1.0-SNAPSHOT
    war


    
        UTF-8
        
        4.3.8.RELEASE
    

    
        
        
            org.springframework
            spring-core
            ${spring.version}
        
        
            org.springframework
            spring-aop
            ${spring.version}
        
        
            org.springframework
            spring-web
            ${spring.version}
        
        
            org.springframework
            spring-webmvc
            ${spring.version}
        
        
            org.springframework
            spring-jdbc
            ${spring.version}
        
        
            org.springframework
            spring-tx
            ${spring.version}
        

        
        
            org.aspectj
            aspectjrt
            1.8.0
        
        
            org.aspectj
            aspectjweaver
            1.8.0
        

        
        
            org.mybatis
            mybatis
            3.3.0
        
        
        
            mysql
            mysql-connector-java
            8.0.15
        
        
        
            com.alibaba
            druid
            1.0.20
        

        
        
            org.mybatis
            mybatis-spring
            1.2.3
        

        
        
            javax.servlet
            jstl
            1.2
        

        
        
            log4j
            log4j
            1.2.17
        
        
            org.slf4j
            slf4j-api
            1.7.21
        

        
        
            junit
            junit
            4.11
            test
        
    
    
        Test
    

Mybatis

sqlMapConfig.xml里面為空

db.properties

jdbc.url=jdbc:mysql://localhost:3306/bigData1701?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.user=user
jdbc.password=123

log4j.properties

# Global logging configuration
#開發(fā)環(huán)境下,日志級別設(shè)置為DEBUG,生產(chǎn)環(huán)境info或者error
log4j.rootLogger=DEBUG, stdout
# Console output...
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n
Spring

applicationContext-dao.xml




    
    
    
    
        
        
        
        
    

    
    
        
        
        
        
        
        
        
    

    
    
        
        
    

applicationContext-service.xml



    
    

applicationContext-transaction.xml




    
    
        
        
    
    
        
            
        
    

    
    
        
    
Springmvc

springmvc.xml



    
    
    
    
    
    
        
        
    
web.xml

web.xml配置如下代碼



    
    
        contextConfigLocation
        classpath:spring/applicationContext-*.xml
    
    
    
        org.springframework.web.context.ContextLoaderListener
    
    
    
        encodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            UTF-8
        
    
    
        encodingFilter
        /*
    

    
    
        springmvc
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:spring/springmvc.xml
        
        1
    
    
        springmvc
        /
    

配置完成,編寫代碼測試

pojo

package cn.scitc.test.pojo;

import java.util.Date;

public class Student {
    private Integer id;
    private String name;
    private Date birthday;

    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 Date getBirthday() {
        return birthday;
    }

    public void setBirthday(Date birthday) {
        this.birthday = birthday;
    }
}

StudentMapper

public interface StudentMapper {
    List queryStudentAll();
}

StudentMapper.xml




    

StudentService

public interface StudentService {
    List queryStudentAll();
}

StudentServiceImpl

@Service
public class StudentServiceImpl implements StudentService {
    @Autowired
    private StudentMapper studentMapper;

    @Override
    public List queryStudentAll() {
        return studentMapper.queryStudentAll();
    }
}

StudentController

@Controller
@RequestMapping("/student")
public class StudentController {

    @Autowired
    private StudentService studentService;

    @RequestMapping("/query")
    public String query(Model model) {
        List studentList =  studentService.queryStudentAll();
        model.addAttribute("studentList",studentList);
        return "test";
    }
}

jsp頁面顯示



        
id name birthday

注意導(dǎo)入的標(biāo)簽庫為:

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt_rt" %>  //fmt會報(bào)錯(cuò)

運(yùn)行測試成功:

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/77635.html

相關(guān)文章

  • 從零開始搭建SSM框架(Spring + Spring MVC + Mybatis)

    摘要:打開,,選中,然后再選中,輸入項(xiàng)目的和,指定等配置,修改,打開項(xiàng)目,添加一些必要的目錄,最終項(xiàng)目框架目錄圖如下修改文件,指定各依賴和插件的版本等信息在標(biāo)簽里面管理各依賴的版本號添加項(xiàng)目依賴管理依賴配置好之后,開始整合。 最近在回顧和總結(jié)一些技術(shù),想到了把之前比較火的 SSM 框架重新搭建出來,作為一個(gè)小結(jié),同時(shí)也希望本文章寫出來能對大家有一些幫助和啟發(fā),因本人水平有限,難免可能會有一些...

    MiracleWong 評論0 收藏0
  • Maven多模塊項(xiàng)目搭建+整合SSM框架

    摘要:繼承作用就是避免配置重復(fù),對于子項(xiàng)目來說應(yīng)該關(guān)心父項(xiàng)目是怎么樣配置的。聚合字面理解就是聚在一起合作完成工作,就是將子模塊聚集起來完成相應(yīng)的項(xiàng)目需求父工程的搭建項(xiàng)目結(jié)構(gòu)在父工程中,主要負(fù)責(zé)完成依賴的版本管理,并不是實(shí)際的依賴。 從大二開始就一直關(guān)注segmentFault,在問題專區(qū)幫忙回答一些自己知曉的問題;在寫這篇文章之前我一直會在朋友圈發(fā)一些自己遇到的問題以及解決辦法,這是第一次寫...

    liaosilzu2007 評論0 收藏0
  • ssm框架整合

    ssm整合 開發(fā)環(huán)境ide,mysql數(shù)據(jù)庫,Spring+SpringMVC+Mybatis,tomcat8.5,jdk使用的是1.7版本。 第一步:導(dǎo)入jar包 Spring+ SpringMVC + MyBatis + Mybatis-spring整合包 AOP聯(lián)盟+織入 + c3p0 數(shù)據(jù)庫連接池 + MySQL連接驅(qū)動(dòng) + jstl 鏈接:https://pan.baidu.com/...

    Simon_Zhou 評論0 收藏0

發(fā)表評論

0條評論

最新活動(dòng)
閱讀需要支付1元查看
<