2、新建动态Web项目
在开发工具中:
File–>New–>Project–>Dynamic Web Project
输入项目名称(本教程项目名:sshDemo),最后点击Finish即可。
3、补充、完善项目目录
为使得项目符合MVC开发规范,我们需要在src下新建controller、service、entity几个包和resources目录。完成后目录结构如下图:
4、导入所需Jar包
本期教程用最原始的方法手动导入项目所需Jar包。手动导入会存在Jar包版本冲突等很多问题,建议直接下载使用。在公众号【C you again】后台回复“Jar”自行下载,若不能正常下载,请在后台私信。
将下载好的Jar包复制到WebContent–>WEB-INF–>lib文件夹下,然后选中所有Jar包–>鼠标右击–>Build Path–>Add to Build Path。
5、添加相关配置文件
完成以上基本步骤后,接下来就是SSH整合的关键步骤了。
首先在项目的WebContent–>WEB-INF下的web.xml文件中加入以下配置,如果没有web.xml文件就需要自己新建一个。
xmlns=“http://java.sun.com/xml/ns/javaee” xmlns:web=“http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” xsi:schemaLocation=“http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” id=“WebApp_ID” version=“2.5”> test.jsp contextConfigLocation classpath*:application.xml org.springframework.web.context.ContextLoaderListener CharacterEncodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding utf-8 CharacterEncodingFilter /* springMvc org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath*:springmvc.xml 1 springMvc / 完成web.xml的配置后,在前面建好的resources文件夹下新建application.xml,具体解释看文件内部。 xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:context=“http://www.springframework.org/schema/context” xmlns:tx=“http://www.springframework.org/schema/tx” xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> class=“org.springframework.beans.factory.config.PropertyPlaceholderConfigurer”> classpath*:dbconfig.properties destroy-method=“close”> class=“org.springframework.orm.hibernate3.LocalSessionFactoryBean”> ${hibernate.dialect} ${hibernate.show_sql} ${hibernate.format_sql} ${hibernate.hbm2ddl.auto} classpath*:hibernate.cfg.xml class=“org.springframework.jdbc.datasource.DataSourceTransactionManager”> 接着在resources文件夹下新建springmvc.xml,代码如下: xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:context=“http://www.springframework.org/schema/context” xmlns:mvc=“http://www.springframework.org/schema/mvc” xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> class=“org.springframework.web.multipart.commons.CommonsMultipartResolver”> 同上面的步骤,继续在resources文件夹下新建hibernate.cfg.xml、dbconfig.properties、log4j.properties三个文件。 hibernate.cfg.xml文件: dbconfig.properties文件: #database connection config jdbc.driver = com.mysql.jdbc.Driver jdbc.url = jdbc:mysql://localhost:3306/test?characterEncoding=utf-8&useSSL=false jdbc.username = root jdbc.password = root #hibernate config hibernate.dialect = org.hibernate.dialect.MySQLDialect hibernate.show_sql = true hibernate.format_sql = true hibernate.hbm2ddl.auto = update log4j.properties文件: log4j.rootLogger=INFO, Console, File log4j.appender.Console=org.apache.log4j.ConsoleAppender log4j.appender.Console.layout=org.apache.log4j.PatternLayout log4j.appender.Console.layout.ConversionPattern=%d{ABSOLUTE} %-5p [%c{3}] %m%n #log4j.appender.Console.layout.ConversionPattern=%d{ABSOLUTE} %-5p [%c] %m%n log4j.appender.File=org.apache.log4j.DailyRollingFileAppender log4j.appender.File.File=spring.log log4j.appender.File.Append=false log4j.appender.File.layout=org.apache.log4j.PatternLayout log4j.appender.File.layout.ConversionPattern=%d{ABSOLUTE} %-5p [%c] %m%n 至此,所有的整合步骤已经完成了,最后的目录结构如下所示,接下来就是设计测试用例了。 6、测试项目能否正常运行 完成上述步骤后,接下来就测试下整合是否成功吧! 在src–>com.cya.entity下创建Person.java实体类 package com.cya.entity; public class Person { private int id; private String name; private int age; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } 在resources下新建mapping目录,用来保存所有的数据库映射文件。mapping目录下创建映射文件:Person.hbm.xml,具体配置如下: 本人面试腾讯,阿里,百度等企业总结下来的面试经历,都是真实的,分享给大家! 准确的说这里又分为两部分: Java刷题:此份文档详细记录了千道面试题与详解; name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } } 在resources下新建mapping目录,用来保存所有的数据库映射文件。mapping目录下创建映射文件:Person.hbm.xml,具体配置如下: 本人面试腾讯,阿里,百度等企业总结下来的面试经历,都是真实的,分享给大家! [外链图片转存中…(img-fmxmW9X1-1714711607281)] [外链图片转存中…(img-GPMdNlSw-1714711607282)] [外链图片转存中…(img-FDH5TZsz-1714711607282)] [外链图片转存中…(img-H4a430hp-1714711607282)] 准确的说这里又分为两部分: Java刷题:此份文档详细记录了千道面试题与详解; [外链图片转存中…(img-oVlJkyqd-1714711607282)] [外链图片转存中…(img-jm3gE3G0-1714711607283)] 本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录Set root logger level to error
Console appender definition
All outputs currently set to be a ConsoleAppender.
File appender definition
独家面经总结,超级精彩
Java面试准备
独家面经总结,超级精彩
Java面试准备
还没有评论,来说两句吧...