随笔分类 - ssm
摘要:1.配置spring 2.建立目录 3.编写dao.impl.UserDaoImpl package com.bao.test.dao.impl; import com.bao.test.dao.UserDao; import org.springframework.stereotype.Contr
阅读全文
摘要:<!-- freemarker https://mvnrepository.com/artifact/org.freemarker/freemarker --> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker
阅读全文
摘要:@Autowired的用法和作用这个注解就是spring可以自动帮你把bean里面引用的对象的setter/getter方法省略,它会自动帮你set/get。 <bean id="userDao" class="..."/> <bean id="userService" class="..."> <
阅读全文
摘要:package gu.bao.ls.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.
阅读全文