摘要:
我们在开发一般常见log4j这个日志文件,它的作用主要是把记录日志。使用在两种方式,一个是日志信息输出在控制台,另一种是把日志信息记录到指定的文件。如下是log4j.properties文件的基本内容: ### direct log messages to stdout ### log4j.appe 阅读全文
摘要:
实体类 public class Person { //实体属性 private Integer id; private String name; private Integer age; private String sex; private String birthday; private Do 阅读全文
摘要:
MyBatis是一种半自动对象-表映射关系的数据访问(DAO)层框架,能够简单高效的实现对数据层访问。可以自动的进行对象的封装,但是sql仍然需要自己来写。 映射文件有元素: insert – 映射插入语句 update – 映射更新语句 delete – 映射删除语句 select – 映射查询语 阅读全文
摘要:
测试结果:10位 测试结果:1000000位 阅读全文
摘要:
spring配置文件遇到如下提示: Multiple annotations found at this line: - Element type "beans" must be followed by either attribute specifications, ">" or "/>". - 阅读全文