1
vote
2answers
39 views

Spring MVC special login interceptor

I have this small web application, for which I am using Spring MVC 3.0 The way I have implemented the login functionality is via normal Handler Interceptor. i.e. when the request comes in the Session ...
0
votes
2answers
36 views

How to get server+app url without having access to HttpServletRequest? [duplicate]

In my Struts 1 + Spring 3 web application, I have a background thread sending emails containing links back to the web application. How do I determine the application URL? I do not have access to ...
0
votes
2answers
29 views

Spring Auto Components Scanning with Constructor injection

I know how to use Auto Components Scanning and Consctuctor Injection individually. http://www.mkyong.com/spring/spring-auto-scanning-components/ ...
0
votes
0answers
38 views

Log4J not really excluded in JBoss EAP6/AS7

In jboss-deployment-structure.xml from application war file, I have exclude log4j modules or so <?xml version="1.0" encoding="UTF-8"?> <jboss-deployment-structure ...
0
votes
2answers
47 views

How to use beans in model attribute in Spring framework

Hello Might be it's a silly Question But I am new in Spring frame work. Please help web.xml <display-name>demo name</display-name> <context-param> ...
2
votes
5answers
64 views

How to run a specific block of code automatically based on date and time?

I am wondering how to make the application execute a specific part of code, for example a part of code to send an email on a specific time and date? I have read the following questions but none of ...
1
vote
2answers
53 views

How to create paths in RESTful web service for “action oriented” methods?

I am creating a RESTful web service and I try to follow the conventions and recomendations for creating a good web service. Now I have come to a halt though. I have a User entity in my system that I ...
0
votes
1answer
20 views

setFirstResult and setMaxResult doesn't work well with Order By

What could cause the CriteriaQuery orderBy method stop working? Here are the implementations: OpenJPAEntityManager kem = OpenJPAPersistence.cast(entityManager()); ...
1
vote
3answers
63 views

Dynamically load a spring xml file based on database values

We currently have a Spring web application and are doing our configuration using XML files. We are starting Spring the DispatcherServlet which creates an XmlWebApplicationContext and loads it from the ...
-8
votes
0answers
41 views

Problème with parsers [closed]

I have a project that parses an Excel file into my application in J2EE (Spring), I use it for the POI API to return of the proofing data from Excel file. The problem that my project is to redesign ...
0
votes
2answers
53 views

Job task don't execute

I'm using quartz on my Java Web application and I have a weird problem. I'm thinking the quartz its executing but don't "run" the Job task: my configuration files: quartz-job.xml: `<?xml ...
0
votes
0answers
21 views

XStream JavaBeanConverter Spring config to serialize using getter

I would like to register XStream JavaBeanConverter in Spring config. I see test examples where JavaBeanConverter is registered as below. xstream.registerConverter(new ...
1
vote
4answers
81 views

What data structure to use with a java jdbc resultset. What is the defacto standard in handeling jdbc records in java?

Learning java. When I make a jdbc call with a query in java, how can I store that record. I have seen them being stored in hash collections by more advanced coders but I am not sure how to use the ...
3
votes
2answers
54 views

How do you make @Resource optional?

Is there some way to make @Resource optional? This means if I don't have a bean of type requested by @Resource, I won't get Exception, but it would be just set to null.
0
votes
0answers
35 views

No such method exception while calling webservice from jsf application using Spring framework

Developed a jsf application in IBM RSA 7.0.0.7. This apllication invokes webserice of a third party. this was running fine But when i imported the same project from IBM RSA 7.0.0.7 to IBM 7.5.4 it ...
0
votes
1answer
20 views

Compression servlet filter that supports minimum object size

I wish to add compression to our spring based web-service (serving both xml and json), I see that there are a number of different gzip compression filters, but not sure which is accepted as the most ...
1
vote
0answers
36 views

Load spring context EAR avoiding web.xml configuration

I have an enterprise application packaged as: EAR WAR1 WAR2 ejb.jar lib/core.jar lib/module1.jar lib/module2.jar ... lib/moduleN.jar WAR packages are optional and every moduleX.jar contains a ...
0
votes
1answer
33 views

@OrderBy annotation cannot order by sub relation

If There is a relation like this: entity A (one) ---> (many) entity B (one)---->(one) entity C And current JPA entity A has following relation definition: @OneToMany(mappedBy = "A", fetch = ...
0
votes
1answer
49 views

Spring Dependency Resolution

I am new to Spring and I am going to develop my first Helloworld Application in spring. What I use Spring 2.5.6 JDK 1.7 Eclipse 3.6 Maven I downloaded Spring framework and added all the required ...
3
votes
5answers
154 views

Using intercept-url in Spring security

What is the preferred way of making patterns in the intercept-url element in Spring security? I am creating a web service (RESTful) and I currently require that all users are logged in and have the ...
1
vote
2answers
36 views

Should a HTTP 404 preceed a HTTP 403 status code?

I have created a web service (RESTful) with Spring MVC 3.1 and I have added Spring security. One of the endpoints is /users/{id} which should only be available to administrators. However /users/{id} ...
1
vote
0answers
20 views

Adding @PreAuthorize on service layer or controller layer? [duplicate]

I wonder what is the recommended way of applying security constraints with Spring Security? I have read that you should secure your service layer so that is what I have done. Now, looking at my ...
-1
votes
1answer
53 views

WARNING: JSF1069: Disabling the JSF 2.0 Facelets ViewHandler as an older FaceletViewHandler

I created a Java EE web application with Spring, Hibernate and JSF 2 but when I run the application the JSF component (PrimeFaces) does not appear and I got this warning: WARNING: JSF1069: ...
0
votes
1answer
40 views

Uploading and saving images in different resolutions on server

I am developing a website using Java and Spring MVC. There is a form which allows entering some details and attaching images. Both data and images get uploaded to the server when user submits the ...
0
votes
2answers
41 views

When to put URLs for resources in REST responses?

I have seen some web services respond with a link to another resource instead of inlining the resource data in the resource requested. When is this approach preferred? Or am I fine using only JSON for ...
0
votes
0answers
11 views

Throw TraversableResolver.isReachable() only on one of the three databases, other two are fine

I run the same application on local oracle database and testing db A, no problem when persisting a series of entities, but when comes to db B, when try to persist one of the entities, the server gives ...
1
vote
1answer
37 views

Spring / Glassfish 3.1.2 stale files

I'm currently developping an application using Spring Web MVC & Spring Security. I can deploy it on Glassfish 3.1.2 but when I want to redeploy after some bug fixing, I get this error : WARNING: ...
0
votes
1answer
55 views

Bean injection inside a JPA @Entity

Is it possible to inject beans to a JPA @Entity using Spring's dependency injection? I attempted to @Autowire ServletContext but, while the server did start successfully, I received a ...
0
votes
0answers
33 views

Should we ever call setClientId() on the connection factory?

This is in the context of creating a durable subscription. There is a setClientId() in DefaultMessageListenerContainer and another one in SingleConnectionFactory. My understanding is : Durable ...
0
votes
3answers
51 views

Injecting factory class to other beans

I have a factory class and I wonder if it is possible to inject the AnimalMapper factory class into other beans that needs it? AnimalMapper factory class public static Mapper create(final String ...
0
votes
1answer
29 views

Bean definition is abstract Error on a Standalone Java application

Im trying to create a ParentDao that will handle all the connection details for my Standalone Java application. When I run my program I get the Error below Exception in thread "main" ...
0
votes
1answer
125 views

spring nested exception is java.lang.NoClassDefFoundError: org/aopalliance/aop/Advice

i tried hard to get rid of this error, but it doesnt want to leave me. here is the config xml <?xml version="1.0" encoding="UTF-8"?> <beans ...
0
votes
2answers
50 views

How to avoid potentially long if statements for the same thing multiple places

I am creating an application and at the front I check if the user is an admin, user, moderator or superadmin. Based on this I create a different XML. So what I currently do is to pass a string in the ...
0
votes
2answers
38 views

Methods on Authentication object in Spring security

How am I supposed to know what getDetails(), getPrincipal() etc returns on SecurityContextHolder.getContext().getAuthentication()? The type is object and I can't make sense of whats written in the ...
0
votes
0answers
30 views

How to call a method in helper using bean defined in servlet.xml?

I am writing Junit test cases for a Helper class. The bean to this "helper" class is defined in servlet.xml. But when i simply use the bean as : @Resource Helper helper; It throws an exception. So, ...
0
votes
1answer
40 views

How to manage logged in session in spring mvc

I have a login controller which autheticates userId and password and set the userId in session , now by legacy I can allways check for the userId key in session ..if present user is logged in if not ...
0
votes
1answer
41 views

Spring MVC with Hibernate Data Saving Error

I have two tables: Company and Automotive. A company can have many automotives. I am unable to persist an Automotive properly. Company is selected in View page from a drop down. My Controller ...
1
vote
0answers
23 views

Returning different JSON objects based on role of currently authenticated user

How do I conditionally serve different JSON objects from a Spring (3.1) backend? I am using Spring Security but I don't understand how I can serve different representations of an object? I am only ...
0
votes
0answers
13 views

Twitter search in Spring Framework

I want to develop an web application using Spring framework to search keywords on public tweets for concluding some statistics. I decided to use Spring Social for this purpose, however, it seems that ...
0
votes
0answers
23 views

child tables are not getting updated when there is no change in parent table in hibernate

I have following mapping <class name="Entity" table="ENTITY"> <id name="id" column="entity_id" type="long"> <generator ...
-2
votes
1answer
32 views

How to scale OR find the requirement of web application [closed]

I am developing spring web application as a product. Which is having 50 post methods. Those post methods are acting as a web service and which will consumed from mobile native apps. All are simple ...
1
vote
0answers
32 views

How to get access to settings in `web.xml` during the start of a Spring web application? [duplicate]

I have several database connection settings in the web.xml file of my application. <context-param> <param-name>databaseName</param-name> ...
0
votes
2answers
66 views

@PreDestroy method of a Spring singleton bean not called

I have a Spring bean defined in beans.xml as follows: <context:annotation-config /> [...] <bean id="myBackend" class="mycompany.BackendBean" scope="singleton" /> Inside the bean are 2 ...
0
votes
1answer
41 views

What is the use case for overriding default login-processing-url in spring security

Here is a sample config for spring security form login <http auto-config="true" use-expressions="false"> <form-login login-processing-url="/static/j_spring_security_check" ...
1
vote
2answers
75 views

Injecting bean declared in xml file using the @Inject annotation

I can't get @Inject to work properly. I'm trying to inject a bean from xml using the @Inject annotation, but I get the error message "java.lang.IllegalArgumentException: 'dataSource' or 'jdbcTemplate' ...
0
votes
1answer
55 views

Spring security does not work

I am getting an error when I try to login (or, when I abort the HTTP Basic dialog with escape) HTTP Status 401 - PreparedStatementCallback; bad SQL grammar [select username,authority from ...
1
vote
1answer
30 views

Tables in Spring security

I want group based security in my application. However I don't understand how to use it. Looking at the two different database schemas from the appendix, I got some questions. Am I supposed to extend ...
0
votes
2answers
35 views

Does it worth to put entity under @Transactional service layer if just for searching?

In Spring MVC, I put most JPA entity (from domain layer) manipulation under service layer and for most CRUD actions, I have to make that service method or class @Transactional. But, just thinking, ...
1
vote
1answer
121 views

Recognize Java EE project

I am not Java EE expert. If I have a source code of a huge Java project, how can I determine if this project is a Java EE-based project or just Java/servlets and JSP? Is there some distinguishing ...
1
vote
1answer
63 views

Adding groups in Spring security

I want to use the group abstraction in my application. However I don't understand how to configure it nor which tables I need. Is it right that you have one user table with the username, password and ...

1 2 3 4 5 23