@Configuration public class CorsConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMappin ...
分类:
其他好文 时间:
2021-07-07 17:54:53
阅读次数:
0
准备工作 public class MainClass { public static void main(String[] args) throws Exception { String resources = "mybatis-config.xml"; InputStream inputStre ...
分类:
其他好文 时间:
2021-07-07 17:50:47
阅读次数:
0
二维数组的遍历使用foreach public int numWays(int n, int[][] relation, int k) { ways = 0; this.n = n; this.k = k; edges = new ArrayList<>(); //把关系处理成list,类似于图的每 ...
分类:
编程语言 时间:
2021-07-07 17:49:25
阅读次数:
0
@PostMapping("uploads") public String posts(@RequestParam("file") List<MultipartFile> files){//参数file以list数组接收 if (files.isEmpty()) { return "上传失败,请选择 ...
分类:
Web程序 时间:
2021-07-06 16:22:43
阅读次数:
0
使用lambda表达式 Collections.sort(List, (a,b) -> x1 - x2); 自定义Comparator方法 Collections.sort(List, new Comparator<E>(){ public int compare(int a, int b){ re ...
分类:
编程语言 时间:
2021-07-05 18:56:31
阅读次数:
0
springboot的war想要在tomcat服务器上运行,必须添加配置。 1.继承并重写 让启动类继承SpringBootServletInitializer,并重写configure方法,关键代码如下 @SpringBootApplication public class UploadDemoA ...
分类:
编程语言 时间:
2021-07-05 18:54:20
阅读次数:
0
接口定义 interface 关键字定义的类就叫接口 接口实例 <?php //接口定义 interface Human{ //跑步 public function run(); //跳远 public function jump(); } //接口实现 class Person implement ...
分类:
Web程序 时间:
2021-07-05 18:53:37
阅读次数:
0
获取类路径下文件的绝对路径 在IDEA软件中,src是类的根路径。 package com.happy.reflection; public class AboutPath { public static void main(String[] args) { String path = Thread ...
分类:
其他好文 时间:
2021-07-05 18:39:57
阅读次数:
0
考虑下面这个列子,我们定义了一个浏览器类。现在我们希望清理这个浏览器,一共需要清理三个东西,所以有3个成员变量。现在我们想将这三个东西放在一个函数里。有两种解决方法,一个是放在成员函数里,一个是放在普通函数里。哪个封装性更好? class WebBrowser{ public: void clear ...
分类:
编程语言 时间:
2021-07-05 18:37:48
阅读次数:
0
自定义一个自己的业务异常 具体代码如下 @EqualsAndHashCode(callSuper = true) @Data public class ServiceException extends RuntimeException { private Integer code; private ...
分类:
其他好文 时间:
2021-07-05 18:24:18
阅读次数:
0