欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

项目开发过程记录

时间:2023-07-11
第一天(—2022/2/6—)

SSM框架搭建,编写配置文件,数据库属性文件
配置文件

pom文件(引入依赖)

<?xml version="1.0" encoding="UTF-8"?> 4.0.0 war org.example Fire 1.0-SNAPSHOT 8 8 org.springframework spring-webmvc 5.3.14 org.springframework spring-jdbc 5.3.14 org.springframework spring-aspects 5.3.14 org.mybatis mybatis 3.5.3 org.mybatis mybatis-spring 2.0.2 org.mybatis.generator mybatis-generator-core 1.4.0 com.github.pagehelper pagehelper 5.0.0 com.mchange c3p0 0.9.5.2 mysql mysql-connector-java 5.1.47 junit junit 4.12 test javax.servlet servlet-api 2.5 provided jstl jstl 1.2

mybatis-config.xml

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

applicationContext.xml

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

dbconfig.properties

jdbc.jdbcUrl=jdbc:mysql://localhost:3306/book?useSSL=false&useUnicode=true&characterEncoding=utf-8jdbc.driverClass=com.mysql.jdbc.Driverjdbc.user=rootjdbc.password=123456

springmvc-servlet.xml

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

web.xml

<?xml version="1.0" encoding="UTF-8"?> contextConfigLocation classpath:applicationContext.xml org.springframework.web.context.ContextLoaderListener DispatcherServlet org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:springmvc-servlet.xml 1 DispatcherServlet / CharacterEncodingFilter org.springframework.web.filter.CharacterEncodingFilter encoding utf-8 forceRequestEncoding true forceResponseEncoding true CharacterEncodingFilter /* HiddenHttpMethodFilter org.springframework.web.filter.HiddenHttpMethodFilter HiddenHttpMethodFilter /*

创建数据库(book) 使用MBG逆向工程 配置MBG.xml文件

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

(测试)MBG

public class MBGTest { public static void main(String[] args) throws Exception { List warnings = new ArrayList(); boolean overwrite = true; File configFile = new File("MBG.xml"); ConfigurationParser cp = new ConfigurationParser(warnings); Configuration config = cp.parseConfiguration(configFile); DefaultShellCallback callback = new DefaultShellCallback(overwrite); MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings); myBatisGenerator.generate(null); }}

自动生成是成功的,但是mbg配置文件中设置不生产注释无效,未知原因。 搭建bootStrap环境 引入bootstrap文件和jQuery文件

编写首页

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。