美文网首页
博客管理系统 springboot<2>

博客管理系统 springboot<2>

作者: 大宇宙宙 | 来源:发表于2017-11-14 22:06 被阅读34次

个人喜欢写代码之前,新建一个空白页面,一个空白功能。
方便去测试,感觉也不是啥不良习惯,就算是不良习惯又如何。

页面准备用:thymeleaf
说实话,我对jsp还熟悉一点点,对thymeleaf是一点都不懂啊 。但是既然是官方推荐的,好奇来试试。
数据持久化使用Mybatis(不多解释,一个字。。。很好用)。

页面比较好整合直接使用就可以:
在pom.xml中添加依赖


image.png

在resources/templates 新建test.html就可以了

@Controller
@RequestMapping("/user")
public class UserController {
  
  @RequestMapping(value = "/login",method = RequestMethod.GET)
  public String test(Model model){
      model.addAttribute("cc","wwwww");
      return "test";
  }
}

下面我们开始编写service和dao以及mybatis的xml。

public interface UserDao {
    UserBean queryUserByNameAndPwd(@Param("username") String name, @Param("password") String pwd);
}
public interface UserService {

        UserBean queryUserByNameAndPwd(String name, String pwd);
}
@Service
public class UserServiceImpl implements UserService {

    @Autowired
    UserDao userDao;
    @Override
    public UserBean queryUserByNameAndPwd(String name, String pwd) {
        return userDao.queryUserByNameAndPwd(name,pwd);
    }
}

在resources/mapper下建立userMappper.xml

<mapper namespace="com.wz.manage.dao.UserDao">


    <select id="queryList" resultType="com.wz.manage.beans.UserBean" >
        select *  from  user
    </select>

    <select id="queryUserByNameAndPwd" resultType="com.wz.manage.beans.UserBean">
        SELECT * FROM `blob_user` WHERE `username`  = #{username} and `password` = #{password}

    </select>
    <update id="updateUserInfo" parameterType="com.wz.manage.beans.UserBean">
        UPDATE `blob_user`
         <if test="headimg!=null">
             SET `headimg` =#{headimg}
         </if>
         WHERE `id` =#{id}

    </update>
</mapper>

然后在application中添加MapperScan:

@SpringBootApplication
@MapperScan("com.wz.manage.dao")
public class ManageApplication {

    public static void main(String[] args) {
        SpringApplication.run(ManageApplication.class, args);
    }
}

最后我们在UserController中进行调用

@Controller
@RequestMapping("/user")
public class UserController {

    @Autowired
    UserService userService;

    @RequestMapping(value = "/login", method = RequestMethod.GET)
    public String test(Model model) {
        UserBean userBean= userService.queryUserByNameAndPwd("wz", "wz");
        model.addAttribute("userBean", userBean);
        return "test";
    }
}

现在我们的编码任务已经完成,如果有需要的话可以进行单元测试:


image.png

选择Test,新建UserControllerTest;然后我们进行test的编写

@RunWith(SpringRunner.class)
@SpringBootTest
public class UserControllerTest {

    @Autowired
    UserService userService;
    @Test
    public void test1() throws Exception {
       UserBean userBean= userService.queryUserByNameAndPwd("wz","wz");
       System.out.print(userBean.getUsername());
    }
}
image.png

这样表示ok,今天到此为止吧。明天继续,加油。

相关文章

  • 博客管理系统 springboot<2>

    个人喜欢写代码之前,新建一个空白页面,一个空白功能。方便去测试,感觉也不是啥不良习惯,就算是不良习惯又如何。 页面...

  • 博客管理系统 springboot<1>

    上次写了一个博客系统,只是显示博客,所以这个准备写一个博客管理系统。功能:管理员登录,注册,权限管理,博客编辑,博...

  • Django开发简单Blog系统——中

    系统功能 1、博客列表展示2、新增博客、修改博客、删除博客、搜索博客3、后台管理 后台管理 django自带后台管...

  • 微型博客系统可行性设计

    微型博客系统 简述 作为一个微型的博客系统,仅支持用户管理,文章管理,评论管理,留言私信管理,信息通知,友情链接这...

  • 博客系统之角色管理系统

    建立角色的实体 建立用户与角色的关系 创建用户时关联角色 修改用户的角色 初始化角色和用户的数据

  • 使用vue + express + mongodb + angu

    #### 使用vue + express + mongodb + angular大家博客管理系统 #### 技术栈...

  • Angular5+Go 博客搭建

    Go语言编写的简易版博客服务端 博客前端预览地址:Track的博客 博客后台预览地址:博客后台管理系统 Githu...

  • Android_SmartDeviceLink_System C

    我的博客 System Capability Manager系统功能管理器 系统能力管理器是获取当前连接模块功能的...

  • SpringBoot实战博客管理系统

    毕业在即,一年一度的论文答辩终于要来了,作为一名计算机专业学生,感觉毕业设计不做个管理系统自己这个学是白上了一样。...

  • WordPress精美主题整理-持续更新

    WordPress是以PHP和MySQL开发的开源博客系统和内容管理系统,WordPress具有插件和模板系统,截...

网友评论

      本文标题:博客管理系统 springboot<2>

      本文链接:https://www.haomeiwen.com/subject/qupfvxtx.html