我正在用Angular(前端)和Spring Boot(后端)做一个项目。
在我的系统中,有一些活动。每个活动都有一个关联的映像。在我的数据库中,我存储了包含更多信息的图像名称。在此,我将演示如何配置数据库:
然后,我将图片存储在服务器的一个单独目录中。
我在下一个路径中存储了一个图像:“资源/静态/图像/”
此外,我还添加了此代码。
@SpringBootApplication
public class AplicacionTurismoApplication {
public static void main(String[] args) {
SpringApplication.run(AplicacionTurismoApplication.class, args);
}
@Configuration
public class WebConfig implements WebMvcConfigurer {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/**")
.addResourceLocations("classpath:/static/");
}
}
}
问题是当我试图从Angular访问到该网址。我有下一个代码在Angular:
<td><img src="http://localhost:8090/images/museoferrocarril.jpg" /></td>
当我在浏览器中启动应用程序时,会出现以下错误:
我的问题是:
以下是我如何设置spring security的:
@Override
protected void configure(HttpSecurity http) throws Exception {
http.cors().and().csrf().disable()
.authorizeRequests()
.antMatchers("/api/auth/**", "/api/interest/list").permitAll()
.anyRequest().authenticated().and()
.formLogin().loginPage("/login").permitAll().defaultSuccessUrl("/recomendation").and()
.exceptionHandling().authenticationEntryPoint(jwtEntryPoint)
.and()
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS);
http.addFilterBefore(jwtTokenFilter(), UsernamePasswordAuthenticationFilter.class);
}
应用程序属性如下所示:
server.port = 8090
spring.datasource.url = jdbc:mysql://localhost:3306/aplicacionTurismo?useSSL=false&serverTimezone=UTC&useLegacyDateTimeCode=false&allowPublicKeyRetrieval=true
spring.datasource.username = ''
spring.datasource.password = ''
spring.jpa.show-sql = true
spring.jpa.hibernate.ddl-auto = update
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
allowPublicKeyRetrieval=true
我还尝试了以下几点。我创建了一个角服务
imagesURL = 'http://localhost:8090/images';
getImages(namePhoto){
return this.httpClient.get<any>(this.imagesURL + '/' + namePhoto);
}
但问题在于:
1.您正面临跨原点问题,因此请在项目中创建跨原点配置类。这段代码适用于我的项目。
@Override
public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)
throws IOException, ServletException {
HttpServletResponse response = (HttpServletResponse) res;
HttpServletRequest request = (HttpServletRequest) req;
response.setHeader("Access-Control-Allow-Origin", "*");
response.setHeader("Access-Control-Allow-Methods", "POST, GET");
response.setHeader("Access-Control-Max-Age", "3600");
response.setHeader("Access-Control-Allow-Headers", "*");
if ("OPTIONS".equalsIgnoreCase(request.getMethod())) {
response.setStatus(HttpServletResponse.SC_OK);
} else {
chain.doFilter(req, res);
}
}
我得到了这个错误。 内部服务器错误 服务器遇到内部错误或配置错误,无法完成您的请求。 请联系webmaster@crimsonbux.com的服务器管理员,并告知他们错误发生的时间,以及您所做的任何可能导致错误的事情。 有关此错误的详细信息,请参阅服务器错误日志。 此外,尝试使用错误文档处理请求时遇到 500 内部服务器错误错误。 www.crimsonbux.com端口80上的Apache/2
我正在尝试将命令存储在队列中,并在以后从队列中读取它们。我使用这个队列是因为代码需要在Arduino上运行。当访问第一个(或任何)字符时,我得到一个分段错误。我在这里做错了什么? 谢谢你的帮助! PS:这招管用:
我安装了apache-jmeter-5.1.1和java 1.8.0_221(8),并在GUI中浏览了构建Web测试计划的入门指南。但是当我单击保存以保存测试计划时,我收到以下错误: 未捕获异常。lang.NoClassDefFoundError:无法初始化类组织。阿帕奇。杰米。gui。util。文件对话框。有关详细信息,请参阅日志文件。 调试器中的完整输出: 你知道怎么解决吗?
我使用的是linux服务器,我已经安装了xamp服务器,当我尝试运行时/opt/lampp/lampp状态我发现正在启动Linux 7.2的XAMPP。3-0... XAMPP:正在启动Apache。。。失败XAMPP:另一个web服务器已在运行。XAMPP:正在启动MySQL。。。好啊XAMPP:正在启动ProFTPD。。。已经在运行了。在cli上 之后,我使用。/opt/lampp/lampp
使用node.js创建了Lambda Hello world函数,并为Get调用创建了API网关触发器,尝试使用URL访问Lambda函数,但出现以下错误。 消息:“内部服务器错误”。 (对AWS来说很新)