项目描述 Hi,大家好,今天分享的项目是《个人家庭财务管理系统》,本系统是针对个人家庭内部的财务管理而开发的,大体功能模块如下: 系统管理模块 验证用户登录功能:该功能主要是验证用户登录时登录名和密码的正确性。 退出系统功能:注销当前登录的用户。 家庭成员管理模块 家庭成员管理功能:主要实现了对家庭 ...
分类:
编程语言 时间:
2020-07-05 00:31:57
阅读次数:
103
1.1.JdbcTemplate概述 他是Spring框架中提供的一个对象:是对原始JDBC API对象的简单封装。Spring框架为我们提供了很多的操作模板类。 操作关系型数据库的: JdbcTemplate Hibernate Template 操作nosql数据库的: RedisTemplat ...
分类:
数据库 时间:
2020-07-05 00:15:44
阅读次数:
69
1.通过IDEA加大jvm,tomcat内存 在VM options中添加:-Dfile.encoding=UTF-8 -mx2048m -XX:MaxPermSize=2048m -Drebel.spring_plugin=true -Drebel.hibernate_plugin=true 2. ...
分类:
其他好文 时间:
2020-07-03 12:22:52
阅读次数:
67
@Component: /** * 原来在XML的配置 * <bean id="IAccountService_annotation" class="main.java.service.impl.IAccountService_annotationImpl" > * <property name=" ...
分类:
编程语言 时间:
2020-07-03 00:49:19
阅读次数:
73
注解与反射 一.注解(Annotation) 作用: 不是程序本身,可以对程序做出解释 可以被其他程序(如编译器)读取 格式 以"@注释名"在代码中存在,还可以添加参数值 内置注解 package oop; import java.util.ArrayList; import java.util.L ...
分类:
其他好文 时间:
2020-07-01 20:47:40
阅读次数:
48
Spring Boot has taken Spring framework to the next level. It has drastically reduced the configuration and setup time required for spring projects. Sp ...
分类:
数据库 时间:
2020-07-01 18:40:39
阅读次数:
64
异常: org.springframework.orm.hibernate3.HibernateSystemException: No default constructor for entity Caused by: org.hibernate.InstantiationException: No ...
分类:
其他好文 时间:
2020-06-30 12:50:04
阅读次数:
55
1、对于Hibernate和MyBatis的区别与利弊,谈谈你的看法 Hibernate与MyBatis的对比: 1.MyBatis非常简单易学,与Hibernate相对较复杂,门槛较高; 2.二者都是比较优秀的开源产品; 3.当系统属于二次开发,无法对数据库结构做到控制和修改,那MyBatis的灵 ...
分类:
其他好文 时间:
2020-06-30 11:05:18
阅读次数:
58
1、统一异常处理类package cn.hadron.controller;import org.springframework.web.bind.annotation.ControllerAdvice;import org.springframework.web.bind.annotation.E ...
分类:
编程语言 时间:
2020-06-28 22:43:53
阅读次数:
71
作为java开发的IDE,idea的2020 社区办还是比较好用的,比2018版的改进不少。 一个java注解的简单例子 package main;import java.lang.annotation.ElementType;import java.lang.annotation.Retentio ...
分类:
编程语言 时间:
2020-06-27 22:50:58
阅读次数:
131