web.config中添加连接字符串: 为webapi添加Description,使用注释来填充此字段 对于所有引用的xxxx.base项目设置生成的xml文档,注意release.debug下都需设置,并重新生成 xxxxx.WebApi\Areas\HelpPage\XmlDocumentationProvider.cs中添加xml文件的解析代码: /// <summary> /// Initializes a new instance of the <see cref="
1. 共三张表:user用户表 group分组表 contact联系人表 entity 分模块,三个实体类,三个模块 2. 先注册再登录 DAO:UserDAOImpl public User getUser(String userName):根据用户名查询对象——登录时 public int saveUser(User user):保存用户——注册时 public int updatePassword(int id, String newPassword):登录成功后在index.jsp处
Moq与单元测试: Moq只需要一个接口,就可以产生一个对象.利用反射机制来动态生成一个空框架,用于模仿对象的行为. public interface IFake { bool DoSomething(string actionname); } [TestMethod] public void Test_Interface_IFake() { var mo = new Mock<IFake>(); mo.Setup(f => f.DoSomething("Ping")