Java8全新的日期和时间API 1.1 LocalDate LocalDate是日期处理类,具体API如下: // 获取当前日期 LocalDate now = LocalDate.now(); // 设置日期 LocalDate localDate = LocalDate.of(2019, 9, 10); ...
java
Java获取html中Select,radio多选的值方法
//jsp中的select多选代码 <select name="selectvalues" size="4" multiple="multiple"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <optio...
java中获取所有的请求参数
java中获取所有的请求参数 //获取所有的请求参数 Enumeration<String> paraNames=request.getParameterNames(); for(Enumeration<String> e=paraNames;e.hasMoreElements();){ String thisName...
java在方法中获取request对象
java在方法中获取request对象 在spring的普通类中: HttpServletRequest request = ((ServletRequestAttributes)RequestContextHolder.getRequestAttributes()).getRequest(); request.getSession(); ...
springboot easypoi 报错The bean ‘beanNameViewResolver’, defined in class path resource [cn/afterturn/e
事故现场: The bean 'beanNameViewResolver', defined in class path resource [cn/afterturn/easypoi/configuration/EasyPoiAutoConfiguration.class], could not be registered. A bean with that name has...
Java-lambda表达式入门
Lambda表达式,也可称为闭包,是JDK8的新特性。Lambda 允许把函数作为一个方法的参数(函数作为参数传递进方法中),可以使代码变的更加简洁紧凑。Lambda表达式是一个可传递的代码块,可以在以后执行一次或多次。...
easypoi导出动态表头excel
easypoi导出动态表头excel 1: springBoot项目maven依赖: <dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-spring-boot-start...
JAVA一对多EXCEL导出
在实际开发中,数据库里面一对多的形式是普遍的事情,比如本次业务中,是一个举报模块,首先需要填写举报人信息,然后可以举报多个员工或者合作伙伴,那么这里就是一个举报人对应多个员工或者合作伙伴。 在后...
警告:THE POM FOR COM.ALIBABA:DRUID:JAR:1.1.21 IS INVALID, TRANSITIVE DEPENDENCIES (IF ANY) WILL..
在我对集成DRUID的SPRINGBOOT项目进行打包部署的时候,报了一个警告: The POM for com.alibaba:druid:jar:1.1.21 is invalid, transitive dependencies (if any) will not be available, enable debug logging ...
InvalidDataAccessApiUsageException: Error attempting to get column ‘createTime‘ from result set的异常
springboot项目,关于InvalidDataAccessApiUsageException: Error attempting to get column 'createTime' from result set. Cause: java.sql.SQLFeatureNotSupportedException ; null; nested exception is java...