首页 > Java > java教程 > 认证Java

认证Java

PHPz
发布: 2024-08-30 15:58:38
原创
524 人浏览过

Authentication java 是 Web 应用程序身份确认的安全术语。它是使用编程语言确认网站和网络应用程序的用户身份的功能。它确认用户的使用并允许他们使用 Java 技术访问网站、应用程序和软件相关产品。它是一种安全方法,用于使用 Java 语言的安全条款来识别授权用户并授予使用应用程序的权限。

开始您的免费软件开发课程

网络开发、编程语言、软件测试及其他

它是一个客户端和服务器端功能,使用唯一的内容并通过安全密码和用户身份进行确认。它在客户端使用用户id和密码,并使用Java编程语言以真实身份访问服务器端数据。这是一个保持 Web 应用程序安全并仅使用可访问的团队成员的文档流程。

语法

此语法用于验证用户的特定分支,例如学生、教师、非教学人员和校长。您可以使用用户名、电子邮件地址和密码登录并确认身份。

在此语法中,应用程序使用用户名和密码进行身份验证。

public class AppSecurityConfig extends AppSecurityConfigurerAdapter {
@Override
protected void configure(AuthenticationManagerBuilder authentic) throws Exception {
UserBuilder userid = User.withDefaultPasswordEncoder();
authentic.inMemoryAuthentication()
.withUser(usersid.username("merry").password("test@123").roles("student"))
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/").hasRole("student")
.and()
.formLogin()
.loginPage("/useLoginPage")
.loginProcessingUrl("/authenticatationUser")
.permitAll()
.and()
.logout().permitAll();
}
}
登录后复制

Java 中的身份验证如何工作?

使用具有安全性和登录表单的网络应用程序。此表单重定向到 JSP 页面。

<form:form action="${pageContext.request.contextPath}/authenticateUser"
Method = "POST">
<c:if test = "${param.error ! = null}">
<b class="failed"> username/password does not authenticate here… </b>
</c:if>
<p>
User ID: <input type = "text" name = "name" />
</p>
<p>
Password: <input type = "password" name = "pswrd" />
</p>
<input type = "submit" value = "Submit" />
</form:form>
登录后复制

使用网络应用程序对登录表单进行身份验证。此表单重定向到 JSP 页面。

<p>
User: <security:authentication property = "principal.username" />
</p>
登录后复制

使用 java spring 框架使用 Java 身份验证语法。 Java使用Spring security来进行权限认证。

public class AppSecurityConfig extends AppSecurityConfigurerAdapter {
@Override
protected void configure(AuthenticationManagerBuilder authentic) throws Exception {
UserBuilder userid = User.withDefaultPasswordEncoder();
authentic.inMemoryAuthentication()
.withUser (usersid.username ("merry")
.password ("test@123")
.roles ("student"))
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/")
.hasRole("student")
.and()
.formLogin()
.loginPage("/useLoginPage")
.loginProcessingUrl("/authenticatationUser")
.permitAll()
.and()
.logout().permitAll();
}
}
登录后复制

Java 身份验证示例

以下是示例:

示例#1

基本示例如下所示。

代码:

文件:authenticationApp.java

public class authenticationApp extends AppSecurityConfigurerAdapter {
@Override
protected void configure(AuthenticationManagerBuilder authentic) throws Exception {
UserBuilder userid = User.withDefaultPasswordEncoder();
authentic.inMemoryAuthentication()
.withUser (usersid.username ("sunny")
.password ("school@123")
.roles ("student"))
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/")
.hasRole("student")
.and()
.formLogin()
.loginPage("/useLoginPage")
.loginProcessingUrl("/authenticatationUser")
.permitAll()
.and()
.logout().permitAll();
}
}
登录后复制

文件:main_login.jsp

<form:form action="${pageContext.request.contextPath}/authenticateUser"
Method = "POST">
<c:if test = "${param.error ! = null}">
<b class="failed"> username/password does not authenticate here… </b>
</c:if>
<p>
User ID: <input type = "text" name = "name" />
</p>
<p>
Password: <input type = "password" name = "pswrd" />
</p>
<input type = "submit" value = "Submit" />
</form:form>
File: authentication.jsp

User name:

登录后复制

输出:

认证Java

输出

认证Java

说明:

  • 在这里,您可以看到单个用户名中的单用户身份验证。
  • “Sunny”仅通过 Java 身份验证访问学生门户。
  • 您将获得单个真实用户的单一表格。

示例#2

Java 示例中的两个身份验证和输出如下所示。

代码:

文件:authenticationApp.java

public class authenticationApp extends AppSecurityConfigurerAdapter {
@Override
protected void configure(AuthenticationManagerBuilder authentic) throws Exception {
UserBuilder userid = User.withDefaultPasswordEncoder();
authentic.inMemoryAuthentication()
.withUser (usersid.username ("merry")
.password ("test@123")
.roles ("student"))
.withUser(users.username("sam")
.password("exam@123")
.roles("student", "teacher"))
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/").hasRole("student")
.antMatchers("/teachers/**").hasRole("teacher")
.and()
.formLogin()
.loginPage("/useLoginPage")
.loginProcessingUrl("/authenticatationUser")
.permitAll()
.and()
.logout().permitAll();
}
}
登录后复制

文件:main_login.jsp

<form:form action="${pageContext.request.contextPath}/authenticateUser"
Method = "POST">
<c:if test = "${param.error ! = null}">
<b class="failed"> username/password does not authenticate here… </b>
</c:if>
<p>
User ID: <input type = "text" name = "name" />
</p>
<p>
Password: <input type = "password" name = "pswrd" />
</p>
<input type = "submit" value = "Submit" />
</form:form>
File: authentication.jsp

User:
Teachrs portal

登录后复制

输出:

认证Java

输出:

认证Java

说明:

  • 在这里,您可以在一个用户名中看到两个身份验证。
  • “sam”通过 Java 身份验证访问教师和学生门户。
  • 您将获得多个真实用户的单一表格。

示例 #3

Java 示例中的多重身份验证和输出如下所示。

代码:

文件:authenticationApp.java

public class authenticationApp extends AppSecurityConfigurerAdapter {
@Override
protected void configure(AuthenticationManagerBuilder authentic) throws Exception {
UserBuilder userid = User.withDefaultPasswordEncoder();
authentic.inMemoryAuthentication()
.withUser (usersid.username ("merry")
.password ("test@123")
.roles ("student"))
.withUser(users.username("sam")
.password("exam@123")
.roles("student", "teacher"))
.withUser(users.username("Ram")
.password("admin@123")
.roles("student", "teacher", "principle"))
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/")
.hasRole("student")
.antMatchers("/teachers/**").hasRole("teacher")
.antMatchers("/principles/**").hasRole("principle")
.and()
.formLogin()
.loginPage("/useLoginPage")
.loginProcessingUrl("/authenticatationUser")
.permitAll()
.and()
.logout().permitAll();
}
}
登录后复制

文件:main_login.jsp

<form:form action="${pageContext.request.contextPath}/authenticateUser"
Method = "POST">
<c:if test = "${param.error ! = null}">
<b class="failed"> username/password does not authenticate here… </b>
</c:if>
<p>
User ID: <input type = "text" name = "name" />
</p>
<p>
Password: <input type = "password" name = "pswrd" />
</p>
<input type = "submit" value = "Submit" />
</form:form>
File: authentication.jsp

User:
Teachers portal
Principle portal

登录后复制

输出:

认证Java

输出:

认证Java

说明:

  • 在这里,您可以看到单个用户名中的多个身份验证。
  • “Ram”通过 Java 身份验证访问教师、学生和管理门户。
  • 您将获得多个真实用户的单一表格。

结论

Java中的身份验证提供了数据和权限的安全性、安全性和隐私性。身份验证用于访问相应用户和权限的数据库的一部分。它变得简单、有吸引力、用户友好且优雅的网站和 Web 应用程序。该函数根据用户的身份对文档进行排序,并仅返回所需的数据。它有助于轻松获取复杂的信息,同时又不会侵犯他人的隐私。

以上是认证Java的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板