@Aspect-AOP探究
一. 前置知识1 动态代理1.1 JDK动态代理
基于接口的动态代理机制。它允许在运行时动态创建实现接口的代理类,并通过代理类来控制对目标对象的访问
核心在于代理类会将所有方法调用转发给 InvocationHandler.invoke 方法,从而可以在方法调用前后插入自定义逻辑。
核心组件
InvocationHandler 接口:用来定义代理对象的方法拦截逻辑。
ava.lang.reflect.InvocationHandler 用于定义方法调用的具体处理逻辑
invoke 方法
1Object invoke(Object proxy, Method method, Object[] args) throws Throwable;
123- proxy : 代理对象- method:被调用的真实方法- args: 方法参数
Proxy 类:用来生成动态代理类。
java.lang.reflect.Proxy 生成动态代理类和实例的静态方法
newProxyInstance 方法
1static Object newProxyInstance(Clas ...
基于Jsoup+ElasticSearch实现的仿苏宁搜索
Jsoup1.概述
Jsoup是一款基于 Java 的HTML解析器,它提供了一套非常省力的API,不但能直接解析某个URL地址、HTML文本内容,而且还能通过类似于DOM、CSS或者jQuery的方法来操作数据,所以 jsoup 也可以被当做爬虫]工具使用,从网站获取dom结构,从而解析下载数据。
Document :文档对象。每份HTML页面都是一个文档对象,Document 是 jsoup 体系中最顶层的结构。
Element:元素对象。一个 Document 中可以着包含着多个 Element 对象,可以使用 Element 对象来遍历节点提取数据或者直接操作HTML。
Elements:元素对象集合,类似于List。
Node:节点对象。标签名称、属性等都是节点对象,节点对象用来存储数据。
类继承关系:Document 继承自 Element(class Document extends Element) ,Element 继承自 Node(class Element extends Node)。
一般执行流程:先获取 Document 对象,然后获取 Element 对 ...
Tess4J-OCR
Tess4J-OCR识别1.介绍1.1.什么是OCR
即Optical Character RecognitionOCR即光学字符识别,简单讲就是对图片文件中的文字进行分析识别,获取的过程。在很多生活场景中都用到,如车牌的扫描识别、身份证扫描识别、图片文本内容识别等。
第三方 OCR 服务:
百度OCR:
百度提供了 OCR 的 API,你可以在百度云平台上注册并获取 API Key 和 Secret Key。然后使用 Java 的 HTTP 请求库发送图片到百度 OCR API,获取识别结果。
百度OCR开发者文档
腾讯OCR:
腾讯云也提供了 OCR 的 API,可以通过注册腾讯云账户并创建 OCR 服务来获取 API 密钥。然后使用 Java 发送 HTTP 请求到腾讯 OCR 服务进行文字识别。
腾讯云OCR文档
阿里云OCR:
阿里云同样提供了 OCR 的 API,可以注册阿里云账户并创建 OCR 服务来获取 API 密钥。通过 Java 发送 HTTP 请求到阿里云 OCR 服务进行文字识别。
阿里云OCR文档
开源 OCR 库:
Tesseract-O ...
Passay库
1. 介绍Passay 是一个功能强大且灵活的密码生成和验证工具,它支持自定义密码规则、字典检查和错误消息自定义等功能
2. 添加 Passay 依赖首先,你需要在你的项目中添加 Passay 库的依赖。如果你使用 Maven,可以在 pom.xml 文件中添加以下依赖:
12345<dependency> <groupId>org.passay</groupId> <artifactId>passay</artifactId> <version>1.6.0</version> <!-- 请根据需要选择最新版本 --></dependency>
3. 生成密码 可以用来生成符合安全要求的密码。例如,生成一个长度为 12 的密码,包含字母、数字和特殊字符:
12345678910111213141516171819import org.passay.*;public class PasswordGeneratorExample { public ...
hexo博客搭建并部署阿里云
基本使用
安装
1npm install -g hexo-cli
创建一个文件文件夹
在此问价夹内初始化一个博客
1hexo init
启动博客
1hexo s
新建一个博客文章
1hexo n "名字"
清理缓存
1hexo clean
生成文章
1hexo g
部署
1hexo d
部署阿里云nginx 配置1234567891011121314151617181920212223242526272829303132333435363738server { listen 80; server_name domain www.domain; location / { root /usr/share/nginx/html/blog; index index.html index.htm; } # location ~* \.(jpg|jpeg|gif|png|swf|rar|zip|css|js|map|svg| ...
初探SpringBoot启动原理
初探SpringBoot启动原理
SpringApplication123456public static ConfigurableApplicationContext run(Class<?>[] primarySources, String[] args) { return new SpringApplication(primarySources).run(args);}//从这个方法可以看出Spring启动过成可以分为两个部分//1、创建SpringApplication对象//2、运行
1、创建SpringApplication1234567891011121314public SpringApplication(ResourceLoader resourceLoader, Class<?>... primarySources) { this.resourceLoader = resourceLoader; Assert.notNull(primarySources, "PrimarySources ...
SpringSecurity-jwt认证
SpringSecurity jwt认证1、认证流程
2、登录2.1、自定义登录配置器2.2、过滤器通过自定义过滤器可以实现多条件校验,例如校验验证码,默认的登录过滤器UsernamePasswordAuthenticationFilter只能校验用户名和密码
123456789101112131415161718192021222324252627282930313233/** * <p> * 自定义用户认证filter * </p> */public class UserAuthenticationFilter extends AbstractAuthenticationProcessingFilter { private static final AntPathRequestMatcher ANT_PATH_REQUEST_MATCHER = new AntPathRequestMatcher("/user/login", "POST"); protected UserAuthenticatio ...
SpringSecurity-原理初探(四)
SpringSecurity 原理初探(四)1、 AuthenticationManagerBuilder用于主要用于构建AuthenticationManager(ProviderManager)
1234567891011121314151617@Overrideprotected ProviderManager performBuild() throws Exception { if (!isConfigured()) { this.logger.debug("No authenticationProviders and no parentAuthenticationManager defined. Returning null."); return null; } ProviderManager providerManager = new ProviderManager(this.authenticationProviders, ...
SpringSecurity-原理初探(三)
SpringSecurity 原理初探(三)1、HttpSecurity 常用配置
**authorizeRequests()**:这是配置请求授权规则的入口点。通常,你会以 authorizeRequests() 方法开始配置,然后定义哪些请求需要进行身份验证和授权。
**antMatchers()**:使用 antMatchers() 方法定义需要授权的 URL 模式。例如,.antMatchers("/admin/**").hasRole("ADMIN") 表示任何以 “/admin/“ 开头的 URL 需要用户具有 “ADMIN” 角色才能访问。
**permitAll()**:permitAll() 方法用于配置允许所有用户访问的请求,即不需要身份验证。
**authenticated()**:authenticated() 方法指示所有已经通过身份验证的用户都可以访问,无需特定的角色或权限。
hasRole() 和 **hasAuthority()**:这些方法用于配置需要具有特定角色或权限的用户才能访问的请求。例 ...
SpringSecurity-原理初探(二)
SpringSecurity 原理初探(二)
SpringSecutity的核心就是构建一个名字为 springSecurityFilterChain 的过滤器Bean,它的类型是 FilterChainProxy
1、@EnableWebSecurity1234567891011121314151617@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.TYPE)@Documented//将配置中的组件导入容器@Import({ WebSecurityConfiguration.class, SpringWebMvcImportSelector.class, OAuth2ImportSelector.class, HttpSecurityConfiguration.class })@EnableGlobalAuthentication@Configurationpublic @interface EnableWebSecurity { /** * Controls debugging su ...