Tagged Questions
0
votes
2answers
51 views
@Value annotation not resolved
I'm creating a sample project as mentioned in MKyong's tutorial. I am using eclipse. When I created the project, I could not find any way to write a @Value annotation.
I know it seems stupid, but I ...
0
votes
1answer
173 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
0answers
94 views
Prevent getters/setters from generating for @Transient fields
Spring Roo has an @RooJavaBean annotation which generates AspectJ getters and setters for non-transient fields. The problem is that it also generates them for transient fields. I have this in ...
0
votes
1answer
150 views
Assign spring beans with annotations
I'm new with annotations, I'm trying the jsf(2.0) spring (3.1) integration, I could integrate the two framewoks but I don't have the viewScope in JSF beacause it isn't avaliable. I want to use ...
0
votes
0answers
75 views
reflecting scala field annotations idiomatically
given (simplified) this code in Scala 2.10:
case class Foo(
@Size(min=32, max=32) @NotEmpty @Pattern(regexp="^[a-zA-Z0-9]{1,5}\\.[a-zA-Z0-9]{1,3}$")
tmfItemId: String,
@Size(max=32) @NotEmpty
...
1
vote
1answer
424 views
Spring mvc portlet @sessionAtribute
Hello would need a little help.
I'm working with Spring and portlets, my problem is that I have 2 tabs handled by two different controller with 2 beans. What I need is to display data from the bean ...
-1
votes
1answer
458 views
@PersistenceContext cannot be resolved to a type
I was running a code in which there's a dependency @PersistenceContext and a field private EntityManager em; both of which cannot be resolved to a type, what is the meaning of this error and how can I ...
0
votes
0answers
51 views
Spring injection of Service within another Service
I have two Services and a Controller that I am trying to set up, like this:
Controller class:
@Controller
public class MyController {
@Autowired
IMyService1 service;
}
Service 2:
@Service
...
0
votes
2answers
131 views
How to validate bean property injected with @ManagedProperty without xml?
I've found a lot of topics discussing how to inject property but none of them suggests validation method.
Here is my bean:
@ManagedBean
@RequestScoped
public class MyBean {
...
0
votes
1answer
123 views
EJB-Annotations Questions
I'm new to JavaEE and EJBs.
I made my first few steps with it but there are quite a few things about the basic annotations, that I don't get, no matter how much time i spend googling and reading ...
1
vote
1answer
228 views
Is it possible to implement JSP usebean as an annotation?
I would like implement JSP useBean taglib as a class annotation... Is possible? How If so, what is the best (easy and efficient) way to do this?
Example:
<jsp:useBean id="p" ...
4
votes
1answer
4k views
Create prototype scoped Spring bean with annotations?
Is it possible to convert the following XML configuration to an annotation based one?
<bean id="myBean" class="my.package.MyBeanClass" scope="prototype" />
I'm using Spring 2.5.6.
3
votes
1answer
3k views
@Singleton in java EJB
I have a EJB that need to be a singleton and statful since its going to be a sort of connection pool. My question is this: if I define a EJB with @Singleton annotation will it then be stateful by ...
1
vote
1answer
194 views
JSF 1.2 to 2.0 annotation change
I migrated from 1.2 to 2.0 and I moved my managed bean names and scopes from the faces-config.xml to the beans using annotations.
One bean(sessionscoped) has an instance variable which gets the ...
0
votes
4answers
549 views
How to initialized java bean with annotation in spring framework?
I have a Java bean:
public class User{
private Integer userid;
private String username;
private String password;
private boolean enable;
//getter and setter
}
I am able ...
5
votes
1answer
2k views
@PreDestroy never called on @ViewScoped
I have a @ViewScoped bean that has a method with an @PreDestroy annotation that should make sure some remote connections are closed. However, the method is not called when the user navigates away.
Is ...
2
votes
2answers
1k views
Spring component detection without xml bean definitions
Is it correct that one can create spring beans using just the @Component annotation as long as context component scanning is configured?
Using spring 3.0.5 with Java 6.
My test case is:
...
0
votes
4answers
750 views
How to signal Spring that Bean property must be populated?
Let's say that I have a Java class like this:
public class PersonGrabber {
private PersonDAO dao;
public void setDao(PersonDao dao) {
this.dao = dao;
}
public PersonDAO getDao() {
...
0
votes
4answers
335 views
How can I make Spring identify beans without using xml or annotations?
I'm trying to integrate Spring framework into an existing project that contains thousands of pojos.
Writing an xml configuration file or going through each file and annotating the classes will be a ...
4
votes
1answer
381 views
Is there an annotation-based way to register PropertyEditors globally in Spring MVC 3.0?
I was wondering if there was a way of registering a PropertyEditor globally within Spring MVC 3.0 onwards. In the documentation their documentation they show how to use annotations to customise bean ...
5
votes
1answer
7k views
Java/Spring Problem with @Service and @Autowired annotations
[spring 3.0.5]
[jboss 5.1]
I have several classes labeled as @Service, which implements thet same interface.
For example,
@Service(value="test1")
public TestImpl1 implements Test {}
...
3
votes
2answers
4k views
inject default values into Spring bean with annotation
I'd like to set default values for a list in a bean using annotations.
For example, if it's not a list you can do:
@Value("myValue")
String test;
But, in my case i want to give default values for ...
6
votes
1answer
2k views
When method marked with @PostConstruct called?
At which phase of the JSF request processing lifecycle, the backing bean method marked with @PostConstruct called?
1
vote
1answer
594 views
Java Property Annotation Standard/Library
I am trying to create a library which depends heavily on annotating class properties. The properties should be able to be annotated via getters or on the actual underlying fields (ala JPA etc.)
Is ...
1
vote
3answers
3k views
Java beans, annotations: What do they do? How do they help me?
Here is what what I understand so far:
Java beans are just to help other things (visual things?) interact with your code. I think that this is mostly for UI stuff because it is easier to design this ...
2
votes
1answer
276 views
Has the JavaBean spec been updated to reflect the existence of annotations
I thought this should be obvious but I can't find it.
Now that fields can have annotations, I thought this should be reflected in the JavaBean spec, but I can't find it.
What I mean:
JavaBean is a ...
0
votes
1answer
634 views
make java custom annotation to mark bean properties for html cleansing
Can I use a Java custom annotation to add some code to a set or get method on a bean property to cleanse the property from bad html being input by my users? I've been looking for examples but I've ...
