
随笔
liangpengTop
这个作者很懒,什么都没留下…
展开
-
spring mvc ${}获取不到变量
control类如下 @Controller public class HelloControl { @RequestMapping(value = "/",method = RequestMethod.GET) public String printHello(ModelMap map) { map.addAttribute("name","hello原创 2016-04-11 23:59:05 · 1447 阅读 · 0 评论 -
MySQL5.7设置root密码
update mysql.user set authentication_string=password('123456') where user='root' and Host = 'localhost'; flush privileges;原创 2016-04-11 20:50:29 · 321 阅读 · 0 评论