In programming, annotations are used to add information to a code element which cannot be expressed by the type system.
0
votes
0answers
3 views
Create Spring 3 annotation that check Session for object and redirect the user
I'm used to implement custom HandlerMethodArgumentResolverComposite for my projects, but now in some methods I have the repetitive code block
...
if (param != null){
return ...
0
votes
0answers
7 views
androidannotation nested generic is not generated correctly
I'm using androidannotation v2.7. Problem is caused by nested generic return type in one of the method below:
@Get("/storage/json/get_pages")
@Accept(MediaType.APPLICATION_JSON)
...
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 ...
0
votes
2answers
12 views
Seam to CDI Migration
We are migrating our application from JBoss Seam to CDI so as expected we had to change all the Seam annotations with their equivalent CDI annotations, So far for basic annotations we succeeded for ...
0
votes
0answers
8 views
Drawing circle around user location
I want to add a circle to around my user point. I know this question is asked a lot but when i implement general approach i can not see my circle in my map. Here is my code:
MyMap.h
#import ...
5
votes
2answers
69 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
43 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
1answer
33 views
org.springframework.beans.factory.BeanCreationException: Error creating bean
I am trying to configure Spring Framework 2.5.6.SEC01 + JPA using Hibernate, but I am getting an exception while spring tries to create a Bean , my xml and the error stack trace below:
Note :
in ...
0
votes
1answer
32 views
Change color of pin on map after pressing button on another screen
I need to find a way to change the pin color when the map is loaded by pushing a button from another screen.
For example, the original pins are all red, but when I go to a page and push the map ...
0
votes
0answers
25 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
0answers
23 views
Doctrine annotation error in production server
I have an error in production server which doesn't occur in my localhost:
AnnotationException: [Semantical Error]
The annotation "@Sensio\Bundle\FrameworkExtraBundle\Configuration\Route" in method ...
0
votes
1answer
20 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
28 views
Spring annotation based configuration change
I have a spring MVC (3.1) web app using Hibernate that is all working correctly - today, I have tried to move the configuration completely over to annotation based config (only using xml for the ...
1
vote
1answer
46 views
Clojure and JavaFX 2.0 — How to access element's ID from clojure callback function
Following the JavaFX Tutorial here: http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm, trying to make it run in Clojure. For now I'm just doing lein run after setting up :aot :all and ...
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 ...
0
votes
1answer
9 views
how to dynamically download a file using struts 2 annotations (passing variable into annotation)
im new to struts 2 and im asking if there's a way to pass a variable argument into struts 2 annotation.
here is what i already did but with no luck
public class DownloadFileAction extends ...
-2
votes
0answers
25 views
Hibernate Entities dosen't work after database modification
i have an application works good ! and i have to change my database structure ! and when i changed it ! and i generate my model classes with hibernate i got this exception !
HCANN000001: Hibernate ...
1
vote
1answer
55 views
Retrofit-Idle java.lang.IllegalStateException: Method path does not contain {}
I am trying to add Retrofit library for json requests to my application.
I am getting a very simple but annoying error.
When i execute this method:
@GET("/Server/ports/{portCode}")
@Headers({
...
0
votes
1answer
19 views
Getting Exceptions while persisting data
Hi I am getting the below mentioned exception while persisting the data
18:23:50,385 ERROR [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/IOCS].[mvc-dispatcher]] ...
1
vote
1answer
25 views
Index annotation on a Matlab Plot
I'm facing the following issue:
I'm analyzing the relationship between a certain impedance value (Complex) and Temperature.
The impedance is calculated for a range of Temperature values and then I ...
0
votes
1answer
24 views
@Scheduled task does not start
I am trying to use the @Scheduled feature. I have followed this and this tutorials but I can not get my scheduled task to be executed.
I have created a worker:
@Component("syncWorker")
public class ...
2
votes
1answer
35 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
25 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
43 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:
...
0
votes
0answers
17 views
Race condition setting up Spring annotation proxies
I'm running Spring 3.2.2 and I'm seeing a race condition during my application startup where some of my beans are being created faster than the @Transactional and @Cacheable annotation advisors. Here ...
1
vote
0answers
10 views
Validation annotations without effect
I have a bean with a filed of type Set which is annotated with @NotNull and @Size(min=1)
@NotNull
@Size(min=1)
@ManyToMany
private Set< Room > affectedRooms;
and this is the corresponding ...
1
vote
1answer
30 views
Matlab: vectorizing update for annotation variable
Using Matlab, I've created a graphical user interface that involves 100 circles on the screen. I've stored the handle of each annotation within a vector called neurons. At every iteration, I want to ...
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 ...
-4
votes
0answers
15 views
How can I implement spring annotations transaction management?
I need to use spring transaction management along with JTA and hibernate I have tried all the solutions available on the net but to no avail can anyone plz help.
0
votes
1answer
27 views
Custom annotations not loading into array?
Below is my code for loading my custom annotations into an array and then adding this array to my map using addAnnotations. I am not getting any pins on my map. If I replace [annotations ...
0
votes
0answers
14 views
@SkipValidation only for one parameter
I have define the following validators:
@Validations(
customValidators = {
@CustomValidator(fieldName="campaignId", type="long", key="campaign.required", ...
0
votes
0answers
13 views
Unitils @DataSet annotation
I have a theoretical question this time. Where is unitils @Dataset annotation processed? Every annotation must have a prosessor class, see ...
1
vote
1answer
44 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?
1
vote
1answer
60 views
Did Scala case class annotations change in 2.10?
In Scala 2.9 I would annotate a case class using the import scala.annotation.target.field:
case class UserAuth(
@(JsonProperty@field)("email")
val email: String,
...
0
votes
0answers
23 views
Hibernate one to many on the same table not using primary key column
I have one table:
@Entity
public class Cardholder
{
@Id
@GeneratedValue
@Column(name="CardholderId")
int cardholderId;
@Column(name="FirstName")
String firstName;
...
0
votes
0answers
27 views
How to use ClassPathScanningCandidateComponentProvider to scan jar Annotation classes? [closed]
I use the spring ClassPathScanningCandidateComponentProvider to search the Annotation classes
?
Here Is My code:
public static void main( String[] args )
{
...
0
votes
1answer
42 views
@JavaScriptInterface to work with both ICS and JB projects
I am running into an issue with @JavaScriptInterface annotation requirement to support api 15 (ICS) and 17 (JB). I have an Android library project which is shared by two application projects. The ...
0
votes
1answer
24 views
HibernateException: Errors in named query
When running a particular unit-test, I am getting the exception:
Caused by: org.hibernate.HibernateException: Errors in named queries: UPDATE_NEXT_FIRE_TIME
at ...
0
votes
1answer
40 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
1answer
48 views
Annotation scan not scanning external jars in classpath
Issue: Spring Component Annotation scan not picking up the class annotated in the external jar which is not included in pom.xml. But i need to scan for classes with specific annotation from external ...
0
votes
1answer
52 views
Hibernate mapping a map <enum, Integer>
i am using Hibernate and JPA annotations to map my classes. I am having a problem when hibernate trys to map this class
@Entity
@Table(name = "social_item")
public class SocialItem extends Item {
...
0
votes
0answers
43 views
Unable to expose Web Service Impl class through JAX-WS annotations
I am developing a web service provider using JAX-WS. The below steps are followed.
Generated stub classes including SOAPBindingImpl class and stub classes and packed as a JAR file and included the ...
0
votes
0answers
25 views
Python Annotate File based on Value in ranges
I am working to annotate genomic data with annotations from an annotation file.
The Genomic data is in the form:
Chr Location ...
The Annotation data is in the form
Chrom Start End ...
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
73 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
41 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 ...
0
votes
1answer
37 views
JPA Lazy Fetch Custom Query
I am using JPA/JFreeChart to display data I collected with a microcontroller, however, I measure 14 sensors every 10 seconds. I have been measuring for over 2 months and I have over 7000000 sets of ...


