Tagged Questions
0
votes
0answers
10 views
Jackson annotation not working with custom date serializer
I read the Jackson's annotations doc but I still can't find how to call a custom serializer from annotations to serialize a java.sql.Date object.
class Test {
java.sql.Date mDate = null;
...
0
votes
1answer
14 views
Validate only one spring annotation on form field and independently from others field
i have a specific requirement even if it seems to be pretty straightforward.
I have a form for a user (give you a simplify version of it).
public class Form{
@NotEmpty(message = "{empty}")
...
0
votes
0answers
10 views
weblogic.application.AnnotationProcessingException in Eclipse IDE
I am trying to build a EAR file which contains my EJB modules. The project build works perfectly but when I try to deploy publish and deploy it in server I always get the following exception. Can ...
0
votes
0answers
11 views
spring primefaces controller bean method access
I'm having an issue when trying to use my controller methods from the page.
I've tried with action and actionListener, and I've mixed these two with ajax="true" and immediate="true" so there are not ...
0
votes
3answers
22 views
Life cycle/length of a DataSource injected with @Resource annotation
I'm far from an expert of the intricacies of Resource Injection, and of indeed DataSources in Java, but I generally understand the process of doing a lookup for a predefined JNDI resource to get a ...
0
votes
1answer
22 views
Access to Spring Test Class Object From Spring Context
Weird subjects continue with the question itself :) is there any way to reach the spring test class from spring application context? Question details is hidden in the "SimpleDaoHandler" class as ...
5
votes
2answers
73 views
Is there a Java annotation for bugs?
I'm looking for a standard Java annotation that allows me mark some code as "related to bug PROJECT-312". The goal is to be able to create a report where I can see which parts of the code were changed ...
0
votes
6answers
41 views
How to generate MapKey for API 2.1
I've done practices on Map View so many times already. But i've hard time trying to generate map key this time.
I dont get the Singup page for generating map APi key after once i got the MD5 code ...
0
votes
1answer
29 views
Is there any way to use an annotation's value in another annotation?
I have several runtime annotations in my codes and have some duplicated value for some of them, for example:
@A(value="/get")
@B(value="/get")
@C(value="/get")
public void methodA(){}
Is there any ...
1
vote
1answer
48 views
What is the purpose of @param annotation in Java code?
/**
*@param context
*@param attrs
*/
Public DotView(Context context, Attribute attrs) {
super(context, attrs);
setFocusAbleInTouch(true);
}
Does the @param serve any purpose. I saw this ...
0
votes
0answers
29 views
Hibernate/JPA - @AttributeOverride usage in multiple level inheritance
We are attempting to create the following structure: SuperClass, MiddleEntity extends SuperClass ,LowLevelEntity extends MiddleClass.
MiddleEntity and LowLevelEntity have different reference columns ...
0
votes
1answer
22 views
Simple-Framework: Duplicate annotation (different namespace)
I have an Rss feed that I'd like to parse in Java using Simple Framework.
I have problems with 2 elements with the same name, but one of them has a namespace assigned.
Here is an example xml:
...
1
vote
0answers
55 views
Generic method invocation using annotations
I am creating a web application and I am injecting a SystemManager interface in it. All of my business logic resides behind it and pages just have to request data from it. I would like to create a ...
0
votes
1answer
21 views
Creating custom annotations with place-holder?
I'm creating some custom annotations. I need to create someones with "place-holders" as it is used in Spring
@Value("#{aParameter}")
or in JSF 2
@ManagedProperty(value="#{aParameter}")
I ...
2
votes
1answer
36 views
What strategies are used for annotation scanning in practice?
I am aware of the below mentioned ways in which annotations could be detected and used:
Annotation processors (compile time code generation)
Runtime annotation scanning (e.g. ASM and other byte-code ...
0
votes
1answer
26 views
Does the length field on the javax.persistence @Column define max?
I have this code:
public class Item {
@Column(name = "serialNo", length = 12)
public String getSerialNo() {
return this.serialNo;
}
public void setSerialNo(String serialNo) ...
3
votes
1answer
46 views
How to read out a column with a colon (:) in its name in hibernate and postgresql
sorry for this maybe being a very easy question, I searched and didn't find anything about my specific case.
I am given a postgre database in which I have a table that has a column called:
...
4
votes
2answers
89 views
Is it possible to inject a bean defined with @Component as an argument to a BeanFactoryPostProcessor?
And if so which configuration is needed? Is this not recommended?
The annotated class:
package com.springbug.beanfactorydependencyissue;
import javax.annotation.Resource;
import ...
1
vote
2answers
48 views
how to listen the special class initialization?
Here I want to listen some special classes initialization; when those classess initialization
I will do some actions.
Present I want to use interface or annotation, but how to implement this?
0
votes
1answer
41 views
Get rid of “The value for annotation attribute must be a constant expression” message
I use annotation in my code, and I try to use value which determine in run time.
I define my list as static final (lst), and I add to this list some elements.
When I use lst.get(i), I get ...
0
votes
0answers
13 views
getting declared field of annotatted class with Annotation processor
I have an annotation processor and I need to get the class associated with an element so I can retrieve its declared fields:
@Override
public boolean process(Set<? extends TypeElement> ...
1
vote
1answer
74 views
How do I specify the name of a JAXB element using Java generics?
I have a situation in which a Java object contains a generic Payload<T> that needs to be marshalled into xml. So given the following classes:
AbstractBox
@XmlTransient
public abstract class ...
1
vote
2answers
42 views
Hibernate transactional method call within transactional method rollback
I am trying to create a transactional method which calls several other transactional methods in order to save some interdependent db entities. I want the transaction to rollback completely if any ...
1
vote
0answers
36 views
Are Filer's originating elements useful?
I'm working on a Java program (Dagger) that uses the Java annotation processing API to generate code. When our program encounters an annotation in Foo.java, it generates Foo$$InjectAdapter.java. We ...
1
vote
3answers
48 views
Error with custom annotation
I have made a custom annotation in java that takes one value (String[]);
@Retention(value = RetentionPolicy.RUNTIME)
public @interface MyAnnotation{
String[] value ();
}
however, I want the ...
0
votes
1answer
43 views
I/O failure during classpath scanning in spring MVC
Hi I am new to Spring and I am trying to do a simple spring mvc application which accepts values from customer form and displays the same in the same in the UI. Now the problem is when I try to ...
0
votes
3answers
48 views
Annotation processor: get all enum values from a TypeMirror or TypeElement
I don't understand how I can retrieve the Enum values in an annotation processor.
My annotation is a custom Java Bean Validation annotation:
@StringEnumeration(enumClass = UserCivility.class)
...
0
votes
2answers
51 views
Passing dynamic parameters to an annotation
I wonder if there is a possiblity to pass dynamically values to an annotation attribute.
I know that annotation are not designed to be modified but I'm using Hibernate Filters and condition to be put ...
0
votes
1answer
57 views
Custom Annotations in Java
This is the first time I am trying to write a custom annotations in java.
I am not sure whether it is possible or not but wanted to give it a try before approaching another solution.
So here is the ...
3
votes
1answer
54 views
What is ElementType.CONSTRUCTOR for?
I'm learning Annotations and Annotation Processors.
I encountered with javax.validation.constraints.NotNull with its declaration of
...
0
votes
1answer
44 views
Java annotation to set a field to it's name
Is there any Java annotation that sets a field value to it's name, for example:
public interface Protocol {
@Whatever String START; // Here @Whatever annotation would set START to "START" in any ...
0
votes
1answer
25 views
Compilation error: Default nullness annotation has not been specified
Platform: Windows
Eclipse Version: http://download.eclipse.org/eclipse/downloads/drops4/S-4.3M7-201305020800/
Test Case:
public class Test {
}
Error: A default nullness annotation has not been ...
2
votes
3answers
50 views
How to mark a Java method as “must use result” for static analysis purposes?
When using GCC to compile C or C++, you can mark functions with attribute((warn_unused_result)) which will cause the compiler to complain if you invoke a function that returns something and then don't ...
0
votes
1answer
76 views
POJO Annotations are not being reflected with Kundera
I am writing one simple Spring Batch Application which reads data from a file and write it into Cassandra DB.
If I run the Cassandra CRUD operations in a simple java project with one single below ...
0
votes
1answer
30 views
Java - Custom/standard validation with Annotations
I'm using annotations in a project. The thing is i'm making custom validation that (partly) depends on annotations. I'm also making own annotations, but I want to use as much as I can from the JSR 303 ...
0
votes
1answer
21 views
BindingResult isn't detecting annotation based constraints and errors
The validation errors don't show up for some reason. In fact, the binding result doesn't return any errors. My bean is as follows:
@NotBlank
@Size(min = 5, max = 20, message = "User ID must be 5 to ...
2
votes
2answers
96 views
Why won't astyanax (java) recognize my @Id annotated values in my scala case class parameter list?
So here's my dilemma: I have a domain model with a bunch of case classes in scala such as User and Organization. Within my data access layer (dao, repository, etc) I am using astyanax(a java library ...
0
votes
1answer
22 views
getFieldsAnnotatedWith annotation containing
Annotation
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Searchable {
SearchType[] types() default { SearchType.ALL };
}
Reflections in some method
...
-1
votes
0answers
80 views
hibernate annotation composite key
I have a composite PK (order_id , order_date), Orders_tables.
And i wanna join many items to each order as (OneToMany).
order_date in orders table is foreign key from dates table.
My Try:
1- PK ...
0
votes
1answer
16 views
Subclass attributes are not populating in the superclass's database table as columns
I have two boolean values in the subclass of a hibernate annotated superclass along with other few attributes:
private Boolean currentLoan;
private Boolean unpaidFine;
@Column(name="current_loan")
...
0
votes
1answer
24 views
Refactor annotation but keep old annotation name for backward compatibility
So I have a problem that I'm not sure is solvable well.
I have a library that has a method annotation
@Retention(RetentionPolicy.RUNTIME)
public @interface CallbackHandler {...}
For the next ...
0
votes
0answers
37 views
Is there a Spring Annotation for Error Handling that is not MVC related?
I have a bunch of Processors (basic data saving objects) that are currently in one big transaction. If one of them fails (duplicate data or whatever) I loose all the data.
I want to put the ...
2
votes
2answers
72 views
How to create an instance of an annotation
I am trying to do some Java annotation magic. I must say I am still catching up on annotation tricks and that certain things are still not quite clear to me.
So... I have some annotated classes, ...
0
votes
1answer
78 views
Autowired annotation in Servlet Spring
I have problem (when i'm calling method from another component class) with NullPointerException like this:
ERROR [UploadServlet] - Servlet.service() for servlet UploadServlet threw exception
...
0
votes
1answer
69 views
@Valid annotation - This annotation disallowed for this location
I have controller method that has @Valid annotation to enforce JSR303 Bean validation.
But when I just give @Valid is shows"
This annotation @Valid is disallowed for this location
I can get rid of ...
1
vote
2answers
50 views
Wiring Spring constructor through annotations
I am wiring a class with the help of Spring annotations :
public class MyClass {
@Autowired
private B b ;
@Value("${foo}")
private String c ;
@Value("${bar}")
private ...
-1
votes
3answers
78 views
Spring, Annotation for Creating Current Date in Hibernate?
in my Spring Application using JPA Hibernate Annotions.
In that mysql Database have table and one column called CreateDate
This column value will be added when record is inserted.
So is their any ...
0
votes
1answer
31 views
Prevent particular method from using AfterMethod in TestNG test
Simple problem - I have such AfterMethod in my TestNG test class
@AfterMethod
public void tearDown() throws Exception {
userService.deleteUser(userName);
}
And all methods using it as expected ...
0
votes
0answers
63 views
Using iText to convert/burn “Stamp” annotations into images
I have a PDF file contains various types of annotations, one of them is of type "Stamp".
I'm using iText, and I need to convert this stamp into image on the same position with the same size, then ...
11
votes
2answers
250 views
What is “override-equivalence” and how is it related to @Override?
Reading the Javadoc for the @Override annotation, I came across the following rule:
If a method is annotated with this
annotation type compilers are required to generate an error message
...




