14 questions
I am thinking of automatically reloading the main screen with JavaScript once every 10 minutes on a site created by JavaEE.In that case, I think it will put a load on the server like the F5 attack.I a...
We are developing a WebAPI for Digest authentication, but if you set the message digest algorithm to SHA-256, the client side will crash.Is there something wrong with the server implementation?languag...
When creating a Util class in a CDI environment, which of the following 1-3 would be the best?I'm thinking about performance and convenience (compatibility with JUnit), but I can't answer which one is...
I use JAX-RS to create a WebAPI where I can download files.I want to delete this file immediately after downloading it, but I don't know how to do it.@GET@ Path (download)public Response download() { ...
I am creating a web application with JavaEE7+Wildfly10.I use gradle for the build.As an independent gradle project, there are two web applications, each built as a war file.Deploy these two war files ...
On wildFly (Ver.8.2.0.Final), we are verifying the operation of data access using JPA's ecipselink (Ver.2.5.1).@Stateful(name=PersonalInformationDaoBeanEJB)public class PersonalInformationDaoBean impl...
//DAO@Transactionalpublic class UserDAO implements UserDAO Interface { @ Inject EntityManagerem; public User find(intid){ return em.find(User.class,id); } @ Override public void update (User user) { ...
Wildfly10 uses EclipseLink.I'd like to separate the DBs for each tenant who uses the application.(The purpose is load balancing.Data protection uses DB line-level security.)When I looked it up, I foun...
Prerequisites/What you want to achievein JAX-RS in a JavaEE6 compliant environmentjavax.announcement.security.RolesAllowedAnnotation I want to achieve the authorization function, but I don't know how ...
- 1 - | » |
© 2025 OneMinuteCode. All rights reserved.