
随记
qq_37863962
这个作者很懒,什么都没留下…
展开
-
git/github的使用
:https://github.com/ 创建远程库 1、创建远程库 2、创建远程库地址别名 git remote -v 查看当前所有远程地址别名 git remote add [别名] [远程地址] 3、推送 git push [别名] [分支名] 4、克隆 gitorigin[远程地址] 5、团队成员邀请 6、拉取 pull=fetch+me...原创 2020-06-07 23:10:26 · 239 阅读 · 0 评论 -
web.xml spring.xml springmvc.xml properties基本配置
web.xml <?xml version="1.0" encoding="UTF-8"?> AAA//项目名称 //加载的spring配置文件 contextConfigLocation classpath*:spring/spring-*.xml <!-- 监听器 --> <listener> ...原创 2020-06-07 23:36:47 · 80 阅读 · 0 评论 -
众筹随记
随记1 删除session: swssion.invalidate(); 监听器初始化(自定义) 继承Application 空指针 拆装箱,为空对象 前台 <foreach varstatus=“status” 当前循环状态对象,里面有该对象的所有信息 注释: <!-- --!> htmlde 注释前台可见 <%-- ...原创 2020-06-07 23:17:39 · 222 阅读 · 0 评论 -
@autowired @Qualifier @Primary @Profile
@autowired 按类型注入 多个实现类抛异常 @Qualifier(“roleService2”) 按bean注入 privae RoleService roleService2; @Component @Primary 首选注入 多个实现类抛异常 public RoleServiceImol implenments RoleService; ...原创 2020-06-07 23:11:49 · 134 阅读 · 0 评论