<el-form-item label="所属班级:" prop="Name" :rules="[{ required: true, message: '班级不能为空'}]"> <el-option v-for="item in options" :label="item.Name" :value="item.Id" :key="item.id"&g…
问题原因 没有实现类的接口上添加了@Autowired注解 问题解决 删掉@Autowired注解 bug详情 Description: Field userDAO in com.crab.service.serviceImpl.UserServiceImpl required a bean of type 'com.crab.dao.UserDAO' that could not be found. The injection point has the following annotatio…
Injection of autowired dependencies failed ERROR org.springframework.web.context.ContextLoader  - Context initialization failed  org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'searchController': Injection of a…
花费了一下午都没有搜索到相关解决方案的原因,一是我使用的 UnsatisfiedDependencyException 这个比较上层的异常(在最前面)来进行搜索, 范围太广导致没有搜索到,而且即便是有人提出是包扫描的问题,但是我spring的基础太差,所以也不知道该怎么操作, 然后这次又印证了我之前的那篇博客,即碰到异常一定要找到根异常,参考我之前的文章: java spring 等启动项目时的异常 或 程序异常的解决思路: 根异常一般在异常行的末尾,这次就是搜索末尾的 {@org.spring…
jquery easyui  输入框 禁止输入负数  设置属性data-options="min:0,required:true" <input id="days" type="text" name="DelayDays" value="" class="easyui-numberbox" data-options="min:0,required:true" s…
@RequestMapping(value = "/detail", method = RequestMethod.GET) public String newDetail(@RequestParam(value="id",defaultValue="1",required=true) int id,@RequestParam(value="typeId",defaultValue="2",required…
今天在页面请求后台的时候遇到了一个问题,请求不到后台 页面代码 <li>                        <a href="javascript:void(0);" class="indicator statistics">                            <span class="icon icon-statistics"></span>            …
ligerui的jquery.validate验证需要添加validate="{required:true,minlength:8,equalTo:'#newpassword'}"…
主要是这三个方面排查: 1,注入写成这样 @Autowired   private BrandServiceImpl      brandServiceImpl; 2,jar冲突,在pom.xml中 <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <versi…
后端abp,前端vue导入excel,开始准备用直接用npoi,觉得要写太多的代码,就算从以前的复制粘贴也麻烦,所以偷懒直接用别人的轮子 Magicodes.IE.这样可以节省很多工作,根据实体生成excel模板.支持枚举.导入时自动验证数据是否合法(必填.类型等) Excel模板 要导入首先要有录入数据的excel模板,以前都是把模板做好,放到服务器上,给一个下载链接给用户下载,这里可以直接用对象动态生成模板. //ExcelAppService.cs /// <summary> /// 生…