In programming, annotations are used to add information to a code element which cannot be expressed by the type system.
0
votes
0answers
10 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 ...
5
votes
1answer
390 views
Some information about @MatrixVariable annotation ins Spring 3.2
today I am studying the Spring MVC showcase dowlodable from the STS dashboard
I have some doubt about the new annotation @MatrixVariable introduced by Spring 3.2 version and the use of the Matrix ...
3
votes
2answers
2k views
get the annotation information at runtime
I wonder if there is any way I can get the annotation information of a class at runtime? Since I want to get the properties that sepcifily annotated.
Example:
class TestMain {
@Field(
...
3
votes
4answers
2k views
Dependency injection using “.properties” file
I am using Java EE 6 and need to load configuration from a ".properties" file. Is there a recommended way (best practice) to load the values from the configuration file using dependency injection? I ...
0
votes
2answers
58 views
Annotation @SequenceGenerator and compilation error
I'm .Net programmer but this time I'm working on Java project and I'm encountering some difficulties.
This java project isn't mine, it was developed by other developer and it uses Hibernate.
When I ...
0
votes
1answer
18 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
6 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 ...
3
votes
3answers
9k views
@autowired annotation issue, not injecting bean in class, using Spring3.0, hibernate
following is my class:
package com.abc.trade.util;
public class StockTraderLogger {
static Logger logger = Logger.getLogger("StockTraderLogger");
@Autowired
ConfigService ...
0
votes
0answers
22 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({
...
-2
votes
0answers
22 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
14 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
21 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
22 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
31 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
16 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
35 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
12 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 ...
5
votes
4answers
5k views
Multi-Column Join in Hibernate/JPA Annotations
I have two entities which I would like to join through multiple columns. These columns are shared by an @Embeddable object that is shared by both entities. In the example below, Foo can have only one ...
1
vote
4answers
4k views
Struts2 - How to use the Struts2 Annotations?
I'm trying to implement the Struts 2 Annotations in my project, but I don't know how.
I added the convention-plugin v 2.1.8.1 to my pom
I modified the web.xml
...
<init-param>
...
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
39 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?
12
votes
1answer
3k views
How to determine if an annotation is inside of MKPolygonView (iOS)
I'm trying to calculate if a specific annotation(like the blue circle of the user location) or a MKPinAnnotation is inside an MKPolygon layer on the mapview.
Some ideas?
Thanks in advance
0
votes
1answer
34 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 {
...
4
votes
2answers
67 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 ...
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 ...
0
votes
1answer
25 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 ...
-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.
68
votes
4answers
32k views
What's the difference between @Component, @Repository & @Service annotations in Spring?
Can @Component, @Repository & @Service annotations be used interchangeably in Spring or do they provide any particular functionality besides acting as a notation device?
In other words, if I have ...
0
votes
0answers
13 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
9 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
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
16 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
2answers
160 views
What is the best way of extending spring application context?
I need to extend spring applicatioContext xml file with new beans definitions and then add references to them to list, which is a property of one bean:
Basic applicationContext xml file:
<bean ...
4
votes
2answers
349 views
Spring Meta-Annotations
Does anybody know what Spring JAR (and where to find it!) contains the functionality for Spring's so-called "meta-annotations". As this article shows, these cool "new" (well, sorta) constructs allow ...
7
votes
2answers
408 views
Android Annotations: Annotated class Xyz_ not finding it's original (“cannot find symbol class Xyz”)
I use the latest Android Annotations 2.6 and IntelliJ IDEA.
Sometimes I always keep having problem with the annotations / classpath / compilation order. Seems to occur irregularly. I had the project ...
1
vote
0answers
20 views
How to use ClassPathScanningCandidateComponentProvider to scan jar Annotation classes?
I use the spring ClassPathScanningCandidateComponentProvider to search the Annotation classes
?
Here Is My code:
public static void main( String[] args )
{
...
0
votes
2answers
2k views
An alternative to @Value annotation in static function
Maybe it's not possible to use @Value annotated variable in static function like this:
@Value("${some.value}")
static private int someValue;
static public void useValue() {
...
3
votes
1answer
69 views
Does it work to put Java XML and persistance annotations on the same bean?
I haven't worked an implementation yet but I'm wondering if it's okay to put XML annotations as well as persistance annotations onto the same bean.
The reason I'm asking is because I want to read in ...
0
votes
3answers
510 views
java.lang.NoSuchMethodError: org.hibernate.cfg.Configuration.addAnnotatedClass
I am new to JPA & hibernate, when I try this tutorial .
I added the following provider in my persistence.xml,
<provider>org.hibernate.ejb.HibernatePersistence</provider>
and I am ...
4
votes
4answers
491 views
How to install an action filter in all actions in ASP.NET MVC?
Is there a way to have an action filter, like
public class MyActionFilterAttribute : ActionFilterAttribute {
public override void OnActionExecuting(ActionExecutingContext context) {
...
be ...
0
votes
1answer
31 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
18 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 ...
1
vote
1answer
67 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 ...
0
votes
1answer
23 views
Mutiple validation options in Annotation
My question is a branch of of this one.
I have a Annotation (say phone annotation) that I want to validate. I can use @phone validator to check if a phone object is valid or not. I want to also be ...
0
votes
3answers
45 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)
...
1
vote
2answers
39 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
34 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
29 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
2answers
2k views
How to apply unique constraints using annotation
@Column(name = "userId")
@UniqueConstraint
private Integer userId;
I am using these annotation for entering data into database table.
i want to make userId field unique field. but when i am ...
1
vote
1answer
111 views
Controlling the UI Component from POJO annotations
I'm working in a Java EE web application using Hibernate, Spring, JSF and Primefaces.
My Question is how can I control the UI components (jsf and primefaces components)
using POJO annotations.
...






