Tomcat入口处理 各个组件的作用 Server: In the Tomcat world, a Server represents the whole container.Service: A Service is an intermediate component which lives inside a Server and ties one or more Connectors
背景: 之前在公司做一个石化项目的时候,用到了POCO。以往都是直接用Entity, 通过Mapping映射进行Entity到POCO的转换,转换的POCO实体支持延迟加载,它主要是配合code first使用(Code first则是指我们先定义POCO这样的实体class,然后生成数据库),现在也可以使用 EF Power tools将已经存在的数据库反向生成poco的class。 是什么: