In programming, annotations are used to add information to a code element which cannot be expressed by the type system.

learn more… | top users | synonyms (1)

1
vote
1answer
31 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
24 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
11 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 ...
1
vote
0answers
24 views

SPRING - My Session and Request Scoped bean behave like singleton

I recently started using spring. I'm trying implement user session, but I always fail. I've spent two days to looking for the answer but I can't find it. I have used annotation and configuration xml ...
0
votes
0answers
15 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
19 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
18 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
27 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
43 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
19 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
7 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
24 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 ...
0
votes
1answer
45 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
16 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
22 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
34 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
22 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
41 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
16 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
28 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
81 views

Is it possible to inject a bean defined with @Component in a xml defined bean?

And if so which configuration is needed? The annotated class: @Component public class MyClass implements MyInterface { @Resource private MyDependency myDependency; //Isn't initialized ...
-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
10 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
43 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
58 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
18 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
25 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
38 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
21 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
34 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
41 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
45 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
41 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
22 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
72 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
33 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 ...
-4
votes
0answers
27 views

How do i generate a jar from model ignoring all annotation [duplicate]

How do i generate a jar from model ignoring all annotations ? is there any easy way ? For example my model has annotations related to hibernate. I want to ignore those annotations while generating the ...
1
vote
1answer
17 views

jaxb XmlAdapter unmarshall an object from the same xml

take a look at this code : @XmlRootElement class Course { private int id; private String name; public Course() {} public Course(int id, String name) { super(); ...
0
votes
2answers
41 views

JSON unmarshalling to POJO and inserting

I would like to unmarshal a json string to a pojo class. I am reading it from an existing url: https://builds.apache.org/job/Accumulo-1.5/api/json I am using apache camel to unmarshal the url ...
0
votes
1answer
24 views

Update annotation's subtitle

I'm struggling with setting the subtitle of an annotation in MapView, once it has been clicked. .m: MKCoordinateRegion England = { {0.0, 0.0} , {0.0, 0.0} }; England.center.latitude = 51.50063; ...
1
vote
0answers
35 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
1answer
52 views

Can I programmatically add link annotation to PDFs?

I am making an iPad app that uses UIWebView to display PDFs. I have a PDF that I would like to programmatically add links to. For simplicity, lets say there are 10 paragraphs. They are all numbered ...
1
vote
1answer
22 views

jaxb annotations to suppress xmlns in soap response

Initially i have all the fields without annotations in my POJO, those are showing great in Soap Response as <fieldName>value</fieldName> Now i have a requirement to show the field ...

1 2 3 4 5 77