随笔分类 - Spring
摘要:import org.springframework.util.ResourceUtils; String cert_url = "/var/www/html/cert/apiclient_cert2.p12"; //本地获取 File file = ResourceUtils.getFile(ce
阅读全文
摘要:@ControllerAdvice@ResponseBodypublic class GlobalExceptionInterceptor { @ExceptionHandler(value = Exception.class) public String exceptionHandler(Http
阅读全文
摘要:第一步:写注解@Component 使当前类成为一个bean对象。(@Controller,@service都行) 第二步:写个static的变量 第三步:写个@PostConstruct注解注解注释的方法,在这个方法里,将自动注入的值赋值给定义的static变量 第四步:static变量替代自动注
阅读全文
摘要:web.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-i
阅读全文
摘要:web.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-i
阅读全文