左手代码右手烟,记录代码人生!
若您已经从 App Store 下载了 macOS Catalina 安装文件,您可以按照以下步骤通过 U 盘进行 macOS 安装:准备一个容量在 16GB 以上的 U 盘,连接到电脑上。在应用程序中打开“终端”。在终端中输入以下命令:sudo /Applications/Install\ macOS\ Catalina.app/Contents/Resources/createinstallmedia --volume /Volumes/MyVolume其中,/Applications/Install\ macOS\ Catalina.app 是您下载的 macOS Catalina 安装文件的路径,/Volumes/MyVolume 是 U 盘的路径,您可以根据实际情况进行修改。按回车键,并在提示输入管理员密码时输入您的管理员密码。在终端完成操作后,您会看到“Install media now available”的提示,这意味着您已经成功地将 macOS Catalina 安装文件写入了 U 盘中。拔出 U 盘,随后您可以将其插入需要安装 macOS Catalina 的电脑中
咋回事。。。
1. 加载外部配置文件spring.config.additional-location=file:/etc/myapp/config/,classpath:/config/ -Dspring.config.additional-location=file:/etc/myapp/config/,classpath:/config/2. 配置文件在 jar 包的同级目录下的 config 目录下,优先级最高3. 读取外部 logback 配置文件java -jar -Dlogging.config=./config/logback-spring.xml datasync-web.jar
前言缓存可以通过将经常访问的数据存储在内存中,减少底层数据源如数据库的压力,从而有效提高系统的性能和稳定性。我想大家的项目中或多或少都有使用过,我们项目也不例外,但是最近在review公司的代码的时候写的很蠢且low, 大致写法如下:public User getById(String id) { User user = cache.getUser(); if(user != null) { return user; } // 从数据库获取 user = loadFromDB(id); cahce.put(id, user); return user; } 其实Spring Boot 提供了强大的缓存抽象,可以轻松地向您的应用程序添加缓存。本文就讲讲如何使用 Spring 提供的不同缓存注解实现缓存的最佳实践。启用缓存@EnableCaching现在大部分项目都是是SpringBoot项目,我们可以在启动类添加注解@EnableCaching来开启缓存功能。@SpringBootApplication @Enabl
在用SpringBoot开发后端服务时,我们一般是提供接口给前端使用,但前端通过浏览器调我们接口时,浏览器会有个同源策略的限制,即协议,域名,端口任一不一样时都会导致跨域,这篇文章主要介绍跨域的几种常用解决方案。测试是否跨域可以在浏览器中随便打开一个页面的控制台,然后在控制台中执行下面这段代码:var xhr = new XMLHttpRequest() xhr.open('GET', 'http://localhost:8080/user') // 替换请求的方法和地址 xhr.send() xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText) } }如果出现了如下的输出,代表确实有跨域一、SpringBoot 配置 CORS 解决跨域即在我们所有响应头配置允许跨域访问,CORS也已经成为主流的跨域解决方案。在项目中创建一
这个鬼天气,终于好点儿了!
# nginx config server { listen 80; server_name yourdomain.com; root /home/yourdomain/www/; index index.html index.htm index.php; if (!-e $request_filename) { rewrite ^(.*)$ /index.php$1 last; } location ~ .*\.php(\/.*)*$ { include fastcgi.conf; fastcgi_pass 127.0.0.1:9000; } access_log logs/yourdomain.log combined; }
Jason
左手代码右手烟!