发表于: 2019-10-11 19:30:34
1 1078
今天完成的事情:
今天刚到分院,下午在学习
1.来之前IDEA创建maven总出问题
师兄帮我配置好了maven(创建流程的问题)
继续做任务16
成功创建好了maven项目
尝试 clean install
clean后本地项目 target文件消失
install后 target文件恢复
但本地m.2并没有看到有jar包
相关链接:INTEL J 如何执行clean install
https://www.cnblogs.com/telwanggs/p/9524554.html
任务17:
之前的账号注册过 ,一直用eclipse做任务
用jdbc连接过mysql
今天看了下jdbctemplate, 没咋看懂如何配置
明天继续研究
今天,学会了在pom.xml中注入依赖
无需手动下载jar包导入,很方便
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.6.RELEASE</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.47</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.1.2.RELEASE</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
明天计划的事情:
努力搞懂 jdbctemplate
遇到的问题:
对spring 和 jdbctemplate 需要了解
及配置使用
收获:
对pom.xml文件的作用加深了了解
刚使用 Intel J IDEA
对一些功能稍微熟悉了些
坐火车休息不足,头晕,提前休息了
评论